Changeset 6088 for trunk/qt4-gui/src/core
- Timestamp:
- 03/04/08 05:23:12 (9 months ago)
- Location:
- trunk/qt4-gui/src/core
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/core/licqgui.cpp
r6085 r6088 607 607 } 608 608 #ifdef USE_KDE 609 return KApplication::x11EventFilter(event);609 return KApplication::x11EventFilter(event); 610 610 #else 611 return QApplication::x11EventFilter(event);611 return QApplication::x11EventFilter(event); 612 612 #endif 613 613 } … … 645 645 646 646 #ifndef USE_KDE 647 QStyle* LicqGui::createStyle(const char* name) 647 QStyle* LicqGui::createStyle(const char* name) const 648 648 { 649 649 QStyle* s = NULL; -
trunk/qt4-gui/src/core/licqgui.h
r6048 r6088 283 283 QTimer myAutoAwayTimer; 284 284 285 QStyle* createStyle(const char* name); 285 #ifndef USE_KDE 286 QStyle* createStyle(const char* name) const; 287 #endif 286 288 }; 287 289 -
trunk/qt4-gui/src/core/mainwin.h
r6043 r6088 27 27 28 28 #ifdef USE_KDE 29 # include <kmenubar.h>29 # include <KDE/KMenuBar> 30 30 #else 31 # include <QMenuBar>31 # include <QMenuBar> 32 32 #endif 33 33
