diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
commit | 0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch) | |
tree | 2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /keduca/keducabuilder/keducaeditorstartdialog.cpp | |
parent | 83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff) | |
download | tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'keduca/keducabuilder/keducaeditorstartdialog.cpp')
-rw-r--r-- | keduca/keducabuilder/keducaeditorstartdialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/keduca/keducabuilder/keducaeditorstartdialog.cpp b/keduca/keducabuilder/keducaeditorstartdialog.cpp index 88cf9305..8528b6ba 100644 --- a/keduca/keducabuilder/keducaeditorstartdialog.cpp +++ b/keduca/keducabuilder/keducaeditorstartdialog.cpp @@ -14,8 +14,8 @@ * (at your option) any later version. * * * ***************************************************************************/ -#include <qradiobutton.h> -#include <qbuttongroup.h> +#include <tqradiobutton.h> +#include <tqbuttongroup.h> #include <kdebug.h> #include <kurlrequester.h> @@ -42,17 +42,17 @@ KEducaEditorStartDialog::KEducaEditorStartDialog(KEducaBuilder * parent, const c // setup connections urlRequester->setFilter( "application/x-edu"); - connect( startChoiceBtnGrp, SIGNAL( clicked(int) ), - this, SLOT( slotChoiceChanged(int) ) ); + connect( startChoiceBtnGrp, TQT_SIGNAL( clicked(int) ), + this, TQT_SLOT( slotChoiceChanged(int) ) ); } /** based on code in kaction.cpp */ void KEducaEditorStartDialog::buildRecentFilesList() { - QString key; - QString value; - QString oldGroup; + TQString key; + TQString value; + TQString oldGroup; KConfig *config = KGlobal::config(); oldGroup = config->group(); @@ -62,8 +62,8 @@ void KEducaEditorStartDialog::buildRecentFilesList() // read file list for( unsigned int i = 1 ; i <= _maxRecentDocumentItems ; i++ ) { - key = QString( "File%1" ).arg( i ); - value = config->readEntry( key, QString::null ); + key = TQString( "File%1" ).arg( i ); + value = config->readEntry( key, TQString::null ); if (!value.isNull()) recentDocumentCB->insertURL( KURL(value) ); |