]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Fix compile with enable final
authorLaurent Montel <montel@kde.org>
Wed, 7 Jan 2009 12:27:38 +0000 (12:27 +0000)
committerLaurent Montel <montel@kde.org>
Wed, 7 Jan 2009 12:27:38 +0000 (12:27 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=907022

src/dolphintooltip.cpp
src/dolphintooltip.h
src/tooltipmanager.cpp

index f0960a1bd2f457997e6375bff903cbf1f09c3e5a..bc3be33aa7ef6bf7e002208c602551c50b2b4662 100644 (file)
@@ -25,9 +25,6 @@
 
 #include <QtGui/QPixmap>
 
-const int PREVIEW_WIDTH = 256;
-const int PREVIEW_HEIGHT = 256;
-
 DolphinBalloonTooltipDelegate::DolphinBalloonTooltipDelegate()
 {
 }
index 568e3ea7836f7e9603064ccbb51edc86b07a22c2..cfc4388311a925714cec816d8d49eb9b904baff3 100644 (file)
@@ -16,9 +16,9 @@
  *   Free Software Foundation, Inc.,                                       *
  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
  ***************************************************************************/
+
 // NOTE: proper documentation will be added once the code is better developed.
+
 #ifndef DOLPHINTOOLTIP_H
 #define DOLPHINTOOLTIP_H
 
 class KFileItem;
 class QPixmap;
 
+const int PREVIEW_WIDTH = 256;
+const int PREVIEW_HEIGHT = 256;
+
+
 class DolphinBalloonTooltipDelegate : public KFormattedBalloonTipDelegate
 {
 public:
index a3faa6923e1114f8b892be2a1e0d68efe38a3c0b..eb3aa6f7017ded2d5c3f7bd0d7679ee611c0c71f 100644 (file)
@@ -33,8 +33,6 @@
 #include <QTimer>
 #include <QToolTip>
 
-const int PREVIEW_WIDTH = 256;
-const int PREVIEW_HEIGHT = 256;
 const int ICON_WIDTH = 128;
 const int ICON_HEIGHT = 128;
 const int PREVIEW_DELAY = 250;