Updates
[situare] / src / ui / buttonitem.cpp
index 6d449f0..f0173d6 100644 (file)
@@ -1,16 +1,34 @@
+/*
+   Situare - A location system for Facebook
+   Copyright (C) 2010  Ixonos Plc. Authors:
+
+       Jukka Saastamoinen - jukka.saastamoinen@ixonos.com
+
+   Situare is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License
+   version 2 as published by the Free Software Foundation.
+
+   Situare is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with Situare; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+   USA.
+*/
+
+#include <QPainter>
 #include "buttonitem.h"
 
+
 ButtonItem::ButtonItem(QWidget *parent)
     : QPushButton(parent)
 {
 
 }
 
-ButtonItem::~ButtonItem()
-{
-
-}
-
 void ButtonItem::paintEvent(QPaintEvent *aPaintEvent)
 {
     //Look and feel settings
@@ -38,6 +56,6 @@ void ButtonItem::paintEvent(QPaintEvent *aPaintEvent)
 
 QSize ButtonItem::sizeHint() const
 {
-   return iconSize();
+   return this->iconSize();
 }