Changeset 6048
- Timestamp:
- 01/15/08 07:13:45 (9 months ago)
- Location:
- branches/qt-gui_qt4
- Files:
-
- 23 modified
-
CMakeLists.txt (modified) (2 diffs)
-
src/config/general.cpp (modified) (1 diff)
-
src/core/CMakeLists.txt (modified) (1 diff)
-
src/core/licqgui.cpp (modified) (3 diffs)
-
src/core/licqgui.h (modified) (1 diff)
-
src/core/mainwin.cpp (modified) (10 diffs)
-
src/core/messagebox.cpp (modified) (3 diffs)
-
src/core/plugin.cpp (modified) (2 diffs)
-
src/dialogs/filedlg.cpp (modified) (1 diff)
-
src/dialogs/logwindow.cpp (modified) (2 diffs)
-
src/dialogs/plugindlg.cpp (modified) (2 diffs)
-
src/dialogs/userinfodlg.cpp (modified) (2 diffs)
-
src/helpers/support.cpp (modified) (2 diffs)
-
src/settings/events.cpp (modified) (11 diffs)
-
src/settings/events.h (modified) (2 diffs)
-
src/settings/general.cpp (modified) (1 diff)
-
src/userevents/usereventcommon.cpp (modified) (1 diff)
-
src/userevents/usereventcommon.h (modified) (2 diffs)
-
src/userevents/usereventtabdlg.cpp (modified) (2 diffs)
-
src/userevents/usersendchatevent.cpp (modified) (1 diff)
-
src/userevents/usersendcommon.cpp (modified) (2 diffs)
-
src/userevents/usersendfileevent.cpp (modified) (3 diffs)
-
src/userevents/userviewevent.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/qt-gui_qt4/CMakeLists.txt
r5888 r6048 70 70 set(QT_MIN_VERSION "4.3.0") 71 71 72 find_package(Qt4 REQUIRED) 72 # Check for Qt unless WITH_KDE is requested 73 if (NOT WITH_KDE) 74 find_package(Qt4 REQUIRED) 75 else (NOT WITH_KDE) 76 find_package(KDE4 REQUIRED) 77 set(USE_KDE ${KDE4_FOUND}) 78 79 # FindKDE4Internal adds "-Wl,--no-undefined" to the linker command 80 # line. This doesn't work for use, since all symbols from the daemon 81 # are undefined. So we remove it. 82 string(REPLACE "-Wl,--no-undefined" "" 83 CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS}") 84 85 # FindKDE4Internal adds "-fvisibility=hidden" to the compiler 86 # command line. This hides symbols in the plugin that the daemon 87 # looks for. So we remove it. 88 string(REPLACE "-fvisibility=hidden" "" 89 CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") 90 91 add_definitions(${KDE4_DEFINITIONS}) 92 link_directories(${KDE4_LIB_DIR}) 93 94 include_directories(${KDE4_INCLUDE_DIR}) 95 set(LIBRARIES ${LIBRARIES} 96 ${KDE4_KDECORE_LIBS} 97 ${KDE4_KDEUI_LIBS} 98 ${KDE4_KIO_LIBS}) 99 endif (NOT WITH_KDE) 100 73 101 include_directories(${QT_INCLUDE_DIR} 74 102 ${QT_QTCORE_INCLUDE_DIR} … … 89 117 set(LIBRARIES ${LIBRARIES} ${GPGME_LIBRARIES}) 90 118 endif (GPGME_FOUND) 91 92 93 # Optional, check for KDE494 if (WITH_KDE)95 message(FATAL_ERROR "KDE4 not yet supported. Please compile without KDE support.")96 find_package(KDE4 REQUIRED)97 set(USE_KDE ${KDE4_FOUND})98 99 add_definitions(${KDE4_DEFINITIONS})100 link_directories(${KDE4_LIB_DIR})101 include_directories(${KDE4_INCLUDE_DIR})102 set(LIBRARIES ${LIBRARIES} kdeui kio kabc)103 endif (WITH_KDE)104 119 105 120 -
branches/qt-gui_qt4/src/config/general.cpp
r6042 r6048 25 25 #include <QApplication> 26 26 #include <QDesktopWidget> 27 28 #ifdef USE_KDE 29 #include <KDE/KGlobalSettings> 30 #endif 27 31 28 32 #include <licq_file.h> -
branches/qt-gui_qt4/src/core/CMakeLists.txt
r5777 r6048 10 10 11 11 # KDE specific stuff 12 if (WITH_KDE)13 list(APPEND core_SRCS licqkimiface.cpp wrap_kde_malloc.cpp)12 # if (WITH_KDE) 13 # list(APPEND core_SRCS licqkimiface.cpp wrap_kde_malloc.cpp) 14 14 15 kde4_add_dcop_skels(core_SRCS kimiface.h)16 kde4_add_dcop_stubs(core_SRCS kimiface.h)17 endif (WITH_KDE)15 # kde4_add_dcop_skels(core_SRCS kimiface.h) 16 # kde4_add_dcop_stubs(core_SRCS kimiface.h) 17 # endif (WITH_KDE) 18 18 19 19 string(REGEX REPLACE ".cpp" ".h" core_HDRS "${core_SRCS}") -
branches/qt-gui_qt4/src/core/licqgui.cpp
r6043 r6048 37 37 #include <QTranslator> 38 38 39 #ifdef USE_KDE 40 #include <KDE/KStandardDirs> 41 #include <KDE/KToolInvocation> 42 #include <KDE/KUrl> 43 #endif 44 39 45 #if defined(Q_WS_X11) 40 46 #include <QX11Info> … … 131 137 LicqGui* LicqGui::myInstance = NULL; 132 138 133 LicqGui::LicqGui(int& argc, char** argv) 134 #ifdef USE_KDE 135 : KApplication(argc, argv, "licq"), 136 #else 137 : QApplication(argc, argv), 139 LicqGui::LicqGui(int& argc, char** argv) : 140 #ifndef USE_KDE 141 QApplication(argc, argv), 138 142 #endif 139 143 myStartHidden(false), … … 1047 1051 { 1048 1052 #ifdef USE_KDE 1049 KApplication* app = static_cast<KApplication*>(qApp);1050 1053 if (url.startsWith("mailto:")) 1051 app->invokeMailer(KURL(url));1054 KToolInvocation::invokeMailer(KUrl(url)); 1052 1055 else 1053 1056 // If no URL viewer is set, use KDE default 1054 1057 if (!myLicqDaemon->getUrlViewer()) 1055 app->invokeBrowser(url);1058 KToolInvocation::invokeBrowser(url); 1056 1059 else 1057 1060 #else -
branches/qt-gui_qt4/src/core/licqgui.h
r6043 r6048 24 24 25 25 #ifdef USE_KDE 26 #include < kapp.h>26 #include <KDE/KApplication> 27 27 #else 28 28 #include <QApplication> -
branches/qt-gui_qt4/src/core/mainwin.cpp
r6045 r6048 27 27 28 28 #ifdef USE_KDE 29 #include < kapp.h>30 #include < kglobal.h>31 #include < kglobalsettings.h>32 #include < kstandarddirs.h>33 #include < kwin.h>34 #include < kiconloader.h>35 #include < kurl.h>36 #include < kpassivepopup.h>29 #include <KDE/KApplication> 30 #include <KDE/KGlobal> 31 #include <KDE/KGlobalSettings> 32 #include <KDE/KStandardDirs> 33 #include <KDE/KWindowSystem> 34 #include <KDE/KIconLoader> 35 #include <KDE/KUrl> 36 #include <KDE/KPassivePopup> 37 37 #else 38 38 #include <QApplication> … … 105 105 106 106 #ifdef USE_KDE 107 #include "licqkimiface.h" 108 #include "dcopclient.h" 107 // TODO 108 // #include "licqkimiface.h" 109 // #include "dcopclient.h" 109 110 #endif 110 111 … … 256 257 257 258 #ifdef USE_KDE 259 /* TODO 258 260 kdeIMInterface = new LicqKIMIface(KApplication::dcopClient()->appId(), this); 259 261 connect(kdeIMInterface, … … 271 273 SIGNAL(addUser(const char*, unsigned long)), 272 274 SLOT(addUser(const char*, unsigned long))); 275 */ 273 276 #endif 274 277 … … 276 279 { 277 280 #ifdef USE_KDE 278 kdeIMInterface->addProtocol((*_ppit)->Name(), (*_ppit)->PPID()); 281 // TODO 282 // kdeIMInterface->addProtocol((*_ppit)->Name(), (*_ppit)->PPID()); 279 283 #endif 280 284 if ((*_ppit)->PPID() != LICQ_PPID) // XXX To be removed later … … 316 320 show(); 317 321 #ifdef USE_KDE 318 KWin ::setOnDesktop(winId(), KWin::currentDesktop());322 KWindowSystem::setOnDesktop(winId(), KWindowSystem::currentDesktop()); 319 323 #endif 320 324 if (isMaximized()) … … 581 585 case USER_STATUS: 582 586 #ifdef USE_KDE 583 kdeIMInterface->userStatusChanged(id, ppid); 587 // TODO 588 // kdeIMInterface->userStatusChanged(id, ppid); 584 589 #endif 585 590 case USER_BASIC: … … 635 640 alias.replace(QChar('>'), ">"); 636 641 637 QString msg(tr("%1 is online") ).arg("<b>" + alias + "</b>");642 QString msg(tr("%1 is online").arg("<b>" + alias + "</b>")); 638 643 QPixmap px = IconManager::instance()->iconForStatus(u->StatusFull(), u->IdString(), u->PPID()); 639 KPassivePopup::message("Licq", msg, px, LicqGui::instance()->dockIcon(), NULL,4000);644 KPassivePopup::message("Licq", msg, px, LicqGui::instance()->dockIcon(), 4000); 640 645 } 641 646 #endif … … 939 944 940 945 #ifdef USE_KDE 941 // let KDE IM interface know about the new protocol 942 kdeIMInterface->addProtocol(QString(pName), nPPID); 946 // TODO 947 // let KDE IM interface know about the new protocol 948 // kdeIMInterface->addProtocol(QString(pName), nPPID); 943 949 #endif 944 950 } … … 1006 1012 1007 1013 #ifdef USE_KDE 1008 kdeIMInterface->removeProtocol(_nPPID); 1014 // TODO 1015 // kdeIMInterface->removeProtocol(_nPPID); 1009 1016 #endif 1010 1017 } -
branches/qt-gui_qt4/src/core/messagebox.cpp
r5892 r6048 37 37 38 38 #ifdef USE_KDE 39 #include < kapp.h>40 #include < kiconloader.h>41 #include < kmessagebox.h>39 #include <KDE/KApplication> 40 #include <KDE/KIconLoader> 41 #include <KDE/KMessageBox> 42 42 #endif 43 43 … … 65 65 #ifdef USE_KDE 66 66 result = (KMessageBox::questionYesNo(q, szQuery, QMessageBox::tr("Licq Question"), 67 szBtn1, szBtn2, QString::null, false) == KMessageBox::Yes);67 KGuiItem(szBtn1), KGuiItem(szBtn2)) == KMessageBox::Yes); 68 68 // The user must confirm his decision! 69 if (result == true && bConfirmYes && szConfirmYes)70 result = (KMessageBox::questionYesNo(q, szConfirmYes, QMessageBox::tr("Licq Question"),71 QMessageBox::tr(" Yes"), QMessageBox::tr("No"), QString::null, false) == KMessageBox::Yes);72 else if (result == false && bConfirmNo && szConfirmNo)73 result = (KMessageBox::questionYesNo(q, szConfirmNo, QMessageBox::tr("Licq Question"),74 QMessageBox::tr(" Yes"), QMessageBox::tr("No"), QString::null, false) == KMessageBox::Yes);69 if (result == true && bConfirmYes && !szConfirmYes.isEmpty()) 70 result = (KMessageBox::questionYesNo(q, szConfirmYes, 71 QMessageBox::tr("Licq Question")) == KMessageBox::Yes); 72 else if (result == false && bConfirmNo && !szConfirmNo.isEmpty()) 73 result = (KMessageBox::questionYesNo(q, szConfirmNo, 74 QMessageBox::tr("Licq Question")) == KMessageBox::Yes); 75 75 #else 76 76 result = (QMessageBox::question(q, QMessageBox::tr("Licq Question"), szQuery, … … 407 407 } 408 408 409 QPixmap icon = KApplication::kApplication()->iconLoader()->loadIcon(iconName, 410 KIcon::NoGroup, KIcon::SizeMedium, KIcon::DefaultState, 0, true); 409 QPixmap icon = KIconLoader::global()->loadIcon(iconName, 410 KIconLoader::NoGroup, KIconLoader::SizeMedium, KIconLoader::DefaultState, 411 QStringList(), 0, true); 411 412 if (icon.isNull()) 412 413 icon = QMessageBox::standardIcon(type); -
branches/qt-gui_qt4/src/core/plugin.cpp
r5945 r6048 24 24 #include <QString> 25 25 #include <QStyleFactory> 26 27 #ifdef USE_KDE 28 #include <KDE/KCmdLineArgs> 29 #endif 26 30 27 31 #include <licq_log.h> … … 120 124 // Don't use the KDE crash handler (drkonqi). 121 125 setenv("KDE_DEBUG", "true", 0); 126 127 KCmdLineArgs::init(myArgc, myArgv, 128 "licq", "qt4-gui", 129 ki18n(LP_Name()), VERSION); 122 130 #endif 123 131 -
branches/qt-gui_qt4/src/dialogs/filedlg.cpp
r5892 r6048 252 252 QString d; 253 253 #ifdef USE_KDE 254 d = KFileDialog::getExistingDirectory(QString(QDir::home DirPath()), this);254 d = KFileDialog::getExistingDirectory(QString(QDir::homePath()), this); 255 255 #else 256 256 d = QFileDialog::getExistingDirectory(this, QString(), QDir::homePath()); -
branches/qt-gui_qt4/src/dialogs/logwindow.cpp
r5837 r6048 34 34 35 35 #ifdef USE_KDE 36 #include < kfiledialog.h>36 #include <KDE/KFileDialog> 37 37 #else 38 38 #include <QFileDialog> … … 122 122 123 123 #ifdef USE_KDE 124 KU RL u = KFileDialog::getSaveURL(QString(QDir::homePath() + "/licq.log"),124 KUrl u = KFileDialog::getSaveUrl(QString(QDir::homePath() + "/licq.log"), 125 125 QString::null, this); 126 126 fn = u.path(); -
branches/qt-gui_qt4/src/dialogs/plugindlg.cpp
r5892 r6048 312 312 (*sit).remove(0, 5); 313 313 (*sit).truncate((*sit).length() - 3); 314 if (::find(lLoadedSPlugins.begin(), lLoadedSPlugins.end(), (*sit).toStdString()) != lLoadedSPlugins.end()) 314 if (::find(lLoadedSPlugins.begin(), lLoadedSPlugins.end(), 315 (*sit).toAscii().constData()) != lLoadedSPlugins.end()) 315 316 continue; 316 317 … … 363 364 (*sit).remove(0, 9); 364 365 (*sit).truncate((*sit).length() - 3); 365 if (::find(lLoadedPPlugins.begin(), lLoadedPPlugins.end(), (*sit).toStdString()) != lLoadedPPlugins.end()) 366 if (::find(lLoadedPPlugins.begin(), lLoadedPPlugins.end(), 367 (*sit).toAscii().constData()) != lLoadedPPlugins.end()) 366 368 continue; 367 369 -
branches/qt-gui_qt4/src/dialogs/userinfodlg.cpp
r6001 r6048 45 45 46 46 #ifdef USE_KDE 47 #include < kfiledialog.h>47 #include <KDE/KFileDialog> 48 48 #include <kdeversion.h> 49 #include <kabc/stdaddressbook.h> 50 #include <kabc/addressee.h> 51 #include <kabc/addresseedialog.h> 52 #include "licqkimiface.h" 53 #define USE_KABC 49 50 // TODO 51 //#include <kabc/stdaddressbook.h> 52 //#include <kabc/addressee.h> 53 //#include <kabc/addresseedialog.h> 54 //#include "licqkimiface.h" 55 //#define USE_KABC 54 56 #else 55 57 #include <QFileDialog> … … 2130 2132 { 2131 2133 #ifdef USE_KDE 2132 Filename = KFileDialog::getOpenFileName( QString::null,2134 Filename = KFileDialog::getOpenFileName(KUrl(), 2133 2135 "Images (*.bmp *.jpg *.jpeg *.jpe *.gif)", this, 2134 2136 tr("Select your picture")); -
branches/qt-gui_qt4/src/helpers/support.cpp
r5901 r6048 25 25 26 26 #if defined(USE_KDE) 27 #include < kwin.h>27 #include <KDE/KWindowSystem> 28 28 #endif 29 29 … … 49 49 50 50 #if defined(USE_KDE) 51 KWin ::setOnAllDesktops(win, stick);51 KWindowSystem::setOnAllDesktops(win, stick); 52 52 #elif defined(Q_WS_X11) 53 53 -
branches/qt-gui_qt4/src/settings/events.cpp
r5991 r6048 29 29 #include <QVBoxLayout> 30 30 31 #ifdef USE_KDE 32 #include <KDE/KUrlRequester> 33 #include <QLineEdit> 34 #endif 35 31 36 #include <licq_icqd.h> 32 37 #include <licq_onevent.h> … … 159 164 laySndTopRow->addWidget(lblSndPlayer); 160 165 161 edtSndPlayer = new KU RLRequester();166 edtSndPlayer = new KUrlRequester(); 162 167 edtSndPlayer->setToolTip(lblSndPlayer->toolTip()); 163 168 lblSndPlayer->setBuddy(edtSndPlayer); … … 171 176 lblSndMsg->setToolTip(tr("Parameter for received messages")); 172 177 layEventParams->addWidget(lblSndMsg, 0, 0); 173 edtSndMsg = new KU RLRequester();178 edtSndMsg = new KUrlRequester(); 174 179 edtSndMsg->setToolTip(lblSndMsg->toolTip()); 175 180 lblSndMsg->setBuddy(edtSndMsg); … … 179 184 lblSndUrl->setToolTip(tr("Parameter for received URLs")); 180 185 layEventParams->addWidget(lblSndUrl, 1, 0); 181 edtSndUrl = new KU RLRequester();186 edtSndUrl = new KUrlRequester(); 182 187 edtSndUrl->setToolTip(lblSndUrl->toolTip()); 183 188 lblSndUrl->setBuddy(edtSndUrl); … … 187 192 lblSndChat->setToolTip(tr("Parameter for received chat requests")); 188 193 layEventParams->addWidget(lblSndChat, 2, 0); 189 edtSndChat = new KU RLRequester();194 edtSndChat = new KUrlRequester(); 190 195 edtSndChat->setToolTip(lblSndChat->toolTip()); 191 196 lblSndChat->setBuddy(edtSndChat); … … 195 200 lblSndFile->setToolTip(tr("Parameter for received file transfers")); 196 201 layEventParams->addWidget(lblSndFile, 3, 0); 197 edtSndFile = new KU RLRequester();202 edtSndFile = new KUrlRequester(); 198 203 edtSndFile->setToolTip(lblSndFile->toolTip()); 199 204 lblSndFile->setBuddy(edtSndFile); … … 203 208 lblSndNotify->setToolTip(tr("Parameter for online notification")); 204 209 layEventParams->addWidget(lblSndNotify, 4, 0); 205 edtSndNotify = new KU RLRequester();210 edtSndNotify = new KUrlRequester(); 206 211 edtSndNotify->setToolTip(lblSndNotify->toolTip()); 207 212 lblSndNotify->setBuddy(edtSndNotify); … … 211 216 lblSndSysMsg->setToolTip(tr("Parameter for received system messages")); 212 217 layEventParams->addWidget(lblSndSysMsg, 5, 0); 213 edtSndSysMsg = new KU RLRequester();218 edtSndSysMsg = new KUrlRequester(); 214 219 edtSndSysMsg->setToolTip(lblSndSysMsg->toolTip()); 215 220 lblSndSysMsg->setBuddy(edtSndSysMsg); … … 219 224 lblSndMsgSent->setToolTip(tr("Parameter for sent messages")); 220 225 layEventParams->addWidget(lblSndMsgSent, 6, 0); 221 edtSndMsgSent = new KU RLRequester();226 edtSndMsgSent = new KUrlRequester(); 222 227 edtSndMsgSent->setToolTip(lblSndMsgSent->toolTip()); 223 228 lblSndMsgSent->setBuddy(edtSndMsgSent); … … 303 308 chkOnEvents->setChecked(oem->CommandType() != ON_EVENT_IGNORE); 304 309 oem->Lock(); 305 edtSndPlayer->setU RL(oem->Command());306 edtSndMsg->setU RL(oem->Parameter(ON_EVENT_MSG));307 edtSndUrl->setU RL(oem->Parameter(ON_EVENT_URL));308 edtSndChat->setU RL(oem->Parameter(ON_EVENT_CHAT));309 edtSndFile->setU RL(oem->Parameter(ON_EVENT_FILE));310 edtSndNotify->setU RL(oem->Parameter(ON_EVENT_NOTIFY));311 edtSndSysMsg->setU RL(oem->Parameter(ON_EVENT_SYSMSG));312 edtSndMsgSent->setU RL(oem->Parameter(ON_EVENT_MSGSENT));310 edtSndPlayer->setUrl(KUrl(oem->Command())); 311 edtSndMsg->setUrl(KUrl(oem->Parameter(ON_EVENT_MSG))); 312 edtSndUrl->setUrl(KUrl(oem->Parameter(ON_EVENT_URL))); 313 edtSndChat->setUrl(KUrl(oem->Parameter(ON_EVENT_CHAT))); 314 edtSndFile->setUrl(KUrl(oem->Parameter(ON_EVENT_FILE))); 315 edtSndNotify->setUrl(KUrl(oem->Parameter(ON_EVENT_NOTIFY))); 316 edtSndSysMsg->setUrl(KUrl(oem->Parameter(ON_EVENT_SYSMSG))); 317 edtSndMsgSent->setUrl(KUrl(oem->Parameter(ON_EVENT_MSGSENT))); 313 318 oem->Unlock(); 314 319 //TODO make general for all plugins … … 357 362 oem->SetCommandType(chkOnEvents->isChecked() ? ON_EVENT_RUN : ON_EVENT_IGNORE); 358 363 359 QString txtSndPlayer = edtSndPlayer->url() ;360 QString txtSndMsg = edtSndMsg->url() ;361 QString txtSndUrl = edtSndUrl->url() ;362 QString txtSndChat = edtSndChat->url() ;363 QString txtSndFile = edtSndFile->url() ;364 QString txtSndNotify = edtSndNotify->url() ;365 QString txtSndSysMsg = edtSndSysMsg->url() ;366 QString txtSndMsgSent = edtSndMsgSent->url() ;364 QString txtSndPlayer = edtSndPlayer->url().pathOrUrl(); 365 QString txtSndMsg = edtSndMsg->url().pathOrUrl(); 366 QString txtSndUrl = edtSndUrl->url().pathOrUrl(); 367 QString txtSndChat = edtSndChat->url().pathOrUrl(); 368 QString txtSndFile = edtSndFile->url().pathOrUrl(); 369 QString txtSndNotify = edtSndNotify->url().pathOrUrl(); 370 QString txtSndSysMsg = edtSndSysMsg->url().pathOrUrl(); 371 QString txtSndMsgSent = edtSndMsgSent->url().pathOrUrl(); 367 372 368 373 const char* oemparams[8] = { -
branches/qt-gui_qt4/src/settings/events.h
r5837 r6048 33 33 34 34 #ifdef USE_KDE 35 class KURLRequester; 35 class KUrlRequester; 36 class QLineEdit; 36 37 #else 37 38 #include <QLineEdit> 38 class KU RLRequester : public QLineEdit39 class KUrl 39 40 { 40 41 public: 41 KURLRequester(QWidget* parent=0, const char* /* name */ = NULL) 42 KUrl(const char* url) : myUrl(url) {} 43 KUrl(const QString& url) : myUrl(url) {} 44 QString pathOrUrl() const { return myUrl; } 45 46 private: 47 QString myUrl; 48 }; 49 50 class KUrlRequester : public QLineEdit 51 { 52 public: 53 KUrlRequester(QWidget* parent=0, const char* /* name */ = NULL) 42 54 : QLineEdit(parent) {}; 43 void setU RL(const QString& url) { setText(url); }44 QString url() const { return text(); }55 void setUrl(const KUrl& url) { setText(url.pathOrUrl()); } 56 KUrl url() const { return KUrl(text()); } 45 57 }; 46 58 #endif … … 121 133 QLabel* lblSndSysMsg; 122 134 QLabel* lblSndMsgSent; 123 KU RLRequester* edtSndPlayer;124 KU RLRequester* edtSndMsg;125 KU RLRequester* edtSndChat;126 KU RLRequester* edtSndUrl;127 KU RLRequester* edtSndFile;128 KU RLRequester* edtSndNotify;129 KU RLRequester* edtSndSysMsg;130 KU RLRequester* edtSndMsgSent;135 KUrlRequester* edtSndPlayer; 136 KUrlRequester* edtSndMsg; 137 KUrlRequester* edtSndChat; 138 KUrlRequester* edtSndUrl; 139 KUrlRequester* edtSndFile; 140 KUrlRequester* edtSndNotify; 141 KUrlRequester* edtSndSysMsg; 142 KUrlRequester* edtSndMsgSent; 131 143 }; 132 144 -
branches/qt-gui_qt4/src/settings/general.cpp
r5991 r6048 35 35 #include <QVBoxLayout> 36 36 37 #ifdef USE_KDE 38 #include <KDE/KFontDialog> 39 #endif 40 37 41 #include <licq_constants.h> 38 42 -
branches/qt-gui_qt4/src/userevents/usereventcommon.cpp
r6000 r6048 384 384 void UserEventCommon::
