diff options
Diffstat (limited to 'kplato/kptdatetable.h')
-rw-r--r-- | kplato/kptdatetable.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kptdatetable.h b/kplato/kptdatetable.h index b75f98db..815a86e9 100644 --- a/kplato/kptdatetable.h +++ b/kplato/kptdatetable.h @@ -104,11 +104,11 @@ public: /** * The size hint. */ - TQSize sizeHint() const; + TQSize tqsizeHint() const; /** * The minimum size hint. */ - TQSize minimumSizeHint() const { return sizeHint(); } + TQSize tqminimumSizeHint() const { return tqsizeHint(); } /** * Return the result. 0 means no selection (reject()), 1..12 are the * months. @@ -260,7 +260,7 @@ public: /** * The constructor. */ - DateTable(TQWidget *parent=0, TQDate date=TQDate::currentDate(), + DateTable(TQWidget *parent=0, TQDate date=TQDate::tqcurrentDate(), const char* name="DateTable", WFlags f=0); /** @@ -268,9 +268,9 @@ public: * To save some time, the size of the largest used cell content is * calculated in each paintCell() call, since all calculations have * to be done there anyway. The size is stored in maxCell. The - * sizeHint() simply returns a multiple of maxCell. + * tqsizeHint() simply returns a multiple of maxCell. */ - virtual TQSize sizeHint() const; + virtual TQSize tqsizeHint() const; /** * Set the font size of the date table. */ @@ -278,7 +278,7 @@ public: /** * Select and display this date. */ - bool setDate(const TQDate&, bool repaint=true); + bool setDate(const TQDate&, bool tqrepaint=true); const TQDate& getDate() const; bool selectDate(const TQDate& date_); |