summaryrefslogtreecommitdiffstats
path: root/korganizer/kdatenavigator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/kdatenavigator.cpp')
-rw-r--r--korganizer/kdatenavigator.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/kdatenavigator.cpp b/korganizer/kdatenavigator.cpp
index b56c60159..abdd8acdf 100644
--- a/korganizer/kdatenavigator.cpp
+++ b/korganizer/kdatenavigator.cpp
@@ -19,8 +19,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include <tqstring.h>
@@ -45,8 +45,8 @@
#include "kdatenavigator.h"
-KDateNavigator::KDateNavigator( TQWidget *parent, const char *name )
- : TQFrame( parent, name ), mBaseDate( 1970, 1, 1 )
+KDateNavigator::KDateNavigator( TQWidget *tqparent, const char *name )
+ : TQFrame( tqparent, name ), mBaseDate( 1970, 1, 1 )
{
TQGridLayout* topLayout = new TQGridLayout( this, 8, 8 );
@@ -179,7 +179,7 @@ void KDateNavigator::updateDates()
// set the week numbers.
for( int i = 0; i < 6; i++ ) {
- // Use QDate's weekNumber method to determine the week number!
+ // Use TQDate's weekNumber method to determine the week number!
TQDate dtStart = mDayMatrix->getDate( i * 7 );
TQDate dtEnd = mDayMatrix->getDate( ( i + 1 ) * 7 - 1 );
int weeknumstart = calsys->weekNumber( dtStart );