diff options
Diffstat (limited to 'konsolekalendar/konsolekalendarvariables.cpp')
-rw-r--r-- | konsolekalendar/konsolekalendarvariables.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/konsolekalendar/konsolekalendarvariables.cpp b/konsolekalendar/konsolekalendarvariables.cpp index bba7864bd..a93279239 100644 --- a/konsolekalendar/konsolekalendarvariables.cpp +++ b/konsolekalendar/konsolekalendarvariables.cpp @@ -36,9 +36,9 @@ #include <kconfig.h> #include <kstandarddirs.h> -#include <qdatetime.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqdatetime.h> +#include <tqstring.h> +#include <tqstringlist.h> #include <stdlib.h> #include <iostream> @@ -79,13 +79,13 @@ KonsoleKalendarVariables::~KonsoleKalendarVariables() // delete m_resource; } -void KonsoleKalendarVariables::setUID( QString uid ) +void KonsoleKalendarVariables::setUID( TQString uid ) { m_bIsUID = true; m_UID = uid; } -QString KonsoleKalendarVariables::getUID() +TQString KonsoleKalendarVariables::getUID() { return m_UID; } @@ -95,13 +95,13 @@ bool KonsoleKalendarVariables::isUID() return m_bIsUID; } -void KonsoleKalendarVariables::setStartDateTime( QDateTime start ) +void KonsoleKalendarVariables::setStartDateTime( TQDateTime start ) { m_bIsStartDateTime = true; m_startDateTime = start; } -QDateTime KonsoleKalendarVariables::getStartDateTime() +TQDateTime KonsoleKalendarVariables::getStartDateTime() { return m_startDateTime; } @@ -111,13 +111,13 @@ bool KonsoleKalendarVariables::isStartDateTime() return m_bIsStartDateTime; } -void KonsoleKalendarVariables::setEndDateTime( QDateTime end ) +void KonsoleKalendarVariables::setEndDateTime( TQDateTime end ) { m_bIsEndDateTime = true; m_endDateTime = end; } -QDateTime KonsoleKalendarVariables::getEndDateTime() +TQDateTime KonsoleKalendarVariables::getEndDateTime() { return m_endDateTime; } @@ -187,22 +187,22 @@ bool KonsoleKalendarVariables::getUseJournals() return( m_bUseJournals ); } -void KonsoleKalendarVariables::setCalendarFile( QString calendar ) +void KonsoleKalendarVariables::setCalendarFile( TQString calendar ) { m_calendar = calendar; } -QString KonsoleKalendarVariables::getCalendarFile() +TQString KonsoleKalendarVariables::getCalendarFile() { return m_calendar; } -void KonsoleKalendarVariables::setImportFile( QString calendar ) +void KonsoleKalendarVariables::setImportFile( TQString calendar ) { m_import = calendar; } -QString KonsoleKalendarVariables::getImportFile() +TQString KonsoleKalendarVariables::getImportFile() { return m_import; } @@ -227,7 +227,7 @@ ExportType KonsoleKalendarVariables::getExportType() return m_exportType; } -void KonsoleKalendarVariables::setExportFile( QString export_file ) +void KonsoleKalendarVariables::setExportFile( TQString export_file ) { m_exportFile = export_file; m_bIsExportFile = true; @@ -238,7 +238,7 @@ bool KonsoleKalendarVariables::isExportFile() return m_bIsExportFile; } -QString KonsoleKalendarVariables::getExportFile() +TQString KonsoleKalendarVariables::getExportFile() { return m_exportFile; } @@ -258,13 +258,13 @@ bool KonsoleKalendarVariables::getAll() return m_bAll; } -void KonsoleKalendarVariables::setDescription( QString description ) +void KonsoleKalendarVariables::setDescription( TQString description ) { m_bDescription = true; m_description = description; } -QString KonsoleKalendarVariables::getDescription() +TQString KonsoleKalendarVariables::getDescription() { return m_description; } @@ -274,13 +274,13 @@ bool KonsoleKalendarVariables::isDescription() return m_bDescription; } -void KonsoleKalendarVariables::setLocation( QString location ) +void KonsoleKalendarVariables::setLocation( TQString location ) { m_bLocation = true; m_location = location; } -QString KonsoleKalendarVariables::getLocation() +TQString KonsoleKalendarVariables::getLocation() { return m_location; } @@ -290,13 +290,13 @@ bool KonsoleKalendarVariables::isLocation() return m_bLocation; } -void KonsoleKalendarVariables::setSummary( QString summary ) +void KonsoleKalendarVariables::setSummary( TQString summary ) { m_bSummary = true; m_summary = summary; } -QString KonsoleKalendarVariables::getSummary() +TQString KonsoleKalendarVariables::getSummary() { return m_summary; } |