summaryrefslogtreecommitdiffstats
path: root/karm/csvexportdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'karm/csvexportdialog.cpp')
-rw-r--r--karm/csvexportdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/karm/csvexportdialog.cpp b/karm/csvexportdialog.cpp
index 4a5536d4..f1e0fce6 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 = ";";