diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /karm/csvexportdialog.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karm/csvexportdialog.cpp')
-rw-r--r-- | karm/csvexportdialog.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/karm/csvexportdialog.cpp b/karm/csvexportdialog.cpp index 4a5536d40..f1e0fce66 100644 --- a/karm/csvexportdialog.cpp +++ b/karm/csvexportdialog.cpp @@ -25,15 +25,15 @@ #include <klocale.h> #include <kpushbutton.h> #include <kurlrequester.h> -#include <qbuttongroup.h> -#include <qcombobox.h> -#include <qradiobutton.h> +#include <tqbuttongroup.h> +#include <tqcombobox.h> +#include <tqradiobutton.h> #include "csvexportdialog.h" #include "reportcriteria.h" CSVExportDialog::CSVExportDialog( ReportCriteria::REPORTTYPE rt, - QWidget *parent, + TQWidget *parent, const char *name ) : CSVExportDialogBase( parent, name ) @@ -55,7 +55,7 @@ CSVExportDialog::CSVExportDialog( ReportCriteria::REPORTTYPE rt, // If decimal symbol is a comma, then default field seperator to semi-colon. // In France and Germany, one-and-a-half is written as 1,5 not 1.5 - QString d = KGlobal::locale()->decimalSymbol(); + TQString d = KGlobal::locale()->decimalSymbol(); if ( "," == d ) CSVExportDialogBase::radioSemicolon->setChecked(true); else CSVExportDialogBase::radioComma->setChecked(true); @@ -83,10 +83,10 @@ ReportCriteria CSVExportDialog::reportCriteria() // moment. rc.allTasks = true; - QString t = grpTimeFormat->selected()->name(); + TQString t = grpTimeFormat->selected()->name(); rc.decimalMinutes = ( t == i18n( "radioDecimal" ) ); - QString d = grpDelimiter->selected()->name(); + TQString d = grpDelimiter->selected()->name(); if ( d == "radioComma" ) rc.delimiter = ","; else if ( d == "radioTab" ) rc.delimiter = "\t"; else if ( d == "radioSemicolon" ) rc.delimiter = ";"; |