summaryrefslogtreecommitdiffstats
path: root/konsolekalendar/konsolekalendarvariables.h
diff options
context:
space:
mode:
Diffstat (limited to 'konsolekalendar/konsolekalendarvariables.h')
-rw-r--r--konsolekalendar/konsolekalendarvariables.h58
1 files changed, 29 insertions, 29 deletions
diff --git a/konsolekalendar/konsolekalendarvariables.h b/konsolekalendar/konsolekalendarvariables.h
index ccba4934..9b0c82d3 100644
--- a/konsolekalendar/konsolekalendarvariables.h
+++ b/konsolekalendar/konsolekalendarvariables.h
@@ -34,8 +34,8 @@
#include <libkcal/resourcecalendar.h>
#include <libkcal/event.h>
-#include <qstring.h>
-#include <qdatetime.h>
+#include <tqstring.h>
+#include <tqdatetime.h>
/**
* @file konsolekalendarvariables.h
@@ -123,13 +123,13 @@ namespace KCal
* Sets start date.
* @param start is the start date.
*/
- void setStartDateTime( QDateTime start );
+ void setStartDateTime( TQDateTime start );
/**
* Get start date.
* @return start date.
*/
- QDateTime getStartDateTime();
+ TQDateTime getStartDateTime();
/**
* Is there start date?
@@ -141,13 +141,13 @@ namespace KCal
* Sets end date.
* @param end is the enddate.
*/
- void setEndDateTime( QDateTime end );
+ void setEndDateTime( TQDateTime end );
/**
* Get end date.
* @return end date.
*/
- QDateTime getEndDateTime();
+ TQDateTime getEndDateTime();
/**
* Is there end date?
@@ -159,13 +159,13 @@ namespace KCal
* Sets the UID, the unique tag for VCard entry.
* @param uid unique tag for VCard entry.
*/
- void setUID( QString uid );
+ void setUID( TQString uid );
/**
* Get UID, the unique tag for VCard entry.
* @return UID number.
*/
- QString getUID();
+ TQString getUID();
/**
* Is there UID set?
@@ -211,37 +211,37 @@ namespace KCal
* Set calendar file
* @param calendar Calendar files full path.
*/
- void setCalendarFile( QString calendar );
+ void setCalendarFile( TQString calendar );
/**
* Returns fullpath to calendar file.
* @return calendar file.
*/
- QString getCalendarFile();
+ TQString getCalendarFile();
/**
* Set file to import active calendar.
* @param calendar Calendar file to import.
*/
- void setImportFile( QString calendar );
+ void setImportFile( TQString calendar );
/**
* Return import filename.
* @return File that should be imported.
*/
- QString getImportFile();
+ TQString getImportFile();
/**
* Add description.
* @param description to event.
*/
- void setDescription( QString description );
+ void setDescription( TQString description );
/**
* Return description.
* @return description of event.
*/
- QString getDescription();
+ TQString getDescription();
/**
* Is there an event description?
@@ -253,13 +253,13 @@ namespace KCal
* Add location information.
* @param location location where the event occurs.
*/
- void setLocation( QString location );
+ void setLocation( TQString location );
/**
* Return location information.
* @return location where event is occurring.
*/
- QString getLocation();
+ TQString getLocation();
/**
* Is there event location information available?
@@ -271,13 +271,13 @@ namespace KCal
* Add summary.
* @param summary event summary.
*/
- void setSummary( QString summary );
+ void setSummary( TQString summary );
/**
* Get summary.
* @return summary.
*/
- QString getSummary();
+ TQString getSummary();
/**
* Is there an event summary?
@@ -324,12 +324,12 @@ namespace KCal
/**
* Set output file.
*/
- void setExportFile( QString export_file );
+ void setExportFile( TQString export_file );
/**
* To what file we'll output.
*/
- QString getExportFile();
+ TQString getExportFile();
/**
* Has an Export File been set?
@@ -365,29 +365,29 @@ namespace KCal
private:
bool m_bIsUID;
- QString m_UID;
+ TQString m_UID;
bool m_bIsStartDateTime;
- QDateTime m_startDateTime;
+ TQDateTime m_startDateTime;
bool m_bIsEndDateTime;
- QDateTime m_endDateTime;
+ TQDateTime m_endDateTime;
bool m_bNext;
bool m_bVerbose;
bool m_bDryRun;
bool m_bUseEvents;
bool m_bUseTodos;
bool m_bUseJournals;
- QString m_calendar;
- QString m_import;
+ TQString m_calendar;
+ TQString m_import;
ExportType m_exportType;
bool m_bIsExportFile;
- QString m_exportFile;
+ TQString m_exportFile;
bool m_bAll;
bool m_bDescription;
- QString m_description;
+ TQString m_description;
bool m_bLocation;
- QString m_location;
+ TQString m_location;
bool m_bSummary;
- QString m_summary;
+ TQString m_summary;
bool m_bFloating;
bool m_bDaysCount;
int m_daysCount;