diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
commit | 4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch) | |
tree | b0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kbabel/commonui/projectpref.cpp | |
parent | 1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff) | |
download | tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbabel/commonui/projectpref.cpp')
-rw-r--r-- | kbabel/commonui/projectpref.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kbabel/commonui/projectpref.cpp b/kbabel/commonui/projectpref.cpp index 1bffa2e6..16e6c114 100644 --- a/kbabel/commonui/projectpref.cpp +++ b/kbabel/commonui/projectpref.cpp @@ -37,9 +37,9 @@ #include "diffpreferences.h" #include "kbprojectsettings.h" -#include <qlayout.h> -#include <qwhatsthis.h> -#include <qvbox.h> +#include <tqlayout.h> +#include <tqwhatsthis.h> +#include <tqvbox.h> #include <kdebug.h> #include <klocale.h> @@ -82,15 +82,15 @@ ProjectDialog::ProjectDialog(Project::Ptr project) addPage(_spellPage, i18n("title of page in preferences dialog","Spelling") , "spellcheck" , i18n("Options for Spell Checking")); - connect( _spellPage, SIGNAL( settingsChanged() ) - , this, SLOT(updateButtons()) ); + connect( _spellPage, TQT_SIGNAL( settingsChanged() ) + , this, TQT_SLOT(updateButtons()) ); _sourcePage = new SourceContextPreferences(0); addPage(_sourcePage, i18n("title of page in preferences dialog","Source") , "source" ,i18n("Options for Showing Source Context")); - connect(_sourcePage, SIGNAL (itemsChanged()) - , this, SLOT (updateButtons()) ); + connect(_sourcePage, TQT_SIGNAL (itemsChanged()) + , this, TQT_SLOT (updateButtons()) ); _miscPage = new MiscPreferences(0); addPage(_miscPage, i18n("title of page in preferences dialog","Miscellaneous") @@ -106,15 +106,15 @@ ProjectDialog::ProjectDialog(Project::Ptr project) addPage(_dirCommandsPage, i18n("title of page in preferences dialog","Folder Commands") , "folder" , i18n("User-Defined Commands for Folder Items")); - connect( _dirCommandsPage, SIGNAL( settingsChanged() ), - this, SLOT(updateButtons()) ); + connect( _dirCommandsPage, TQT_SIGNAL( settingsChanged() ), + this, TQT_SLOT(updateButtons()) ); _fileCommandsPage = new FileCommandsPreferences(0); addPage(_fileCommandsPage, i18n("title of page in preferences dialog","File Commands") , "files" , i18n("User-Defined Commands for File Items")); - connect( _fileCommandsPage, SIGNAL( settingsChanged() ), - this, SLOT(updateButtons()) ); + connect( _fileCommandsPage, TQT_SIGNAL( settingsChanged() ), + this, TQT_SLOT(updateButtons()) ); _viewPage = new ViewPreferences(0); addPage(_viewPage, i18n("title of page in preferences dialog","Catalog Manager") |