From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- konsolekalendar/konsolekalendarvariables.cpp | 42 ++++++++++++++-------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'konsolekalendar/konsolekalendarvariables.cpp') 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 #include -#include -#include -#include +#include +#include +#include #include #include @@ -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; } -- cgit v1.2.1