diff options
Diffstat (limited to 'libtdeedu/extdate/extdatewidget.cpp')
-rw-r--r-- | libtdeedu/extdate/extdatewidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libtdeedu/extdate/extdatewidget.cpp b/libtdeedu/extdate/extdatewidget.cpp index bd0163d3..014c8568 100644 --- a/libtdeedu/extdate/extdatewidget.cpp +++ b/libtdeedu/extdate/extdatewidget.cpp @@ -73,7 +73,7 @@ ExtDateWidget::ExtDateWidget( const ExtDate &date, TQWidget *parent, // void ExtDateWidget::init() // { // d = new ExtDateWidgetPrivate; -// KLocale *locale = KGlobal::locale(); +// KLocale *locale = TDEGlobal::locale(); // TQHBoxLayout *layout = new TQHBoxLayout(this, 0, KDialog::spacingHint()); // layout->setAutoAdd(true); // d->m_day = new ExtDateWidgetSpinBox(1, 1, this); @@ -97,7 +97,7 @@ ExtDateWidget::ExtDateWidget( const ExtDate &date, TQWidget *parent, void ExtDateWidget::init(const ExtDate& date) { d = new ExtDateWidgetPrivate; - //KLocale *locale = KGlobal::locale(); + //KLocale *locale = TDEGlobal::locale(); TQHBoxLayout *layout = new TQHBoxLayout(this, 0, KDialog::spacingHint()); layout->setAutoAdd(true); d->m_day = new ExtDateWidgetSpinBox(1, 1, this); @@ -125,7 +125,7 @@ ExtDateWidget::~ExtDateWidget() void ExtDateWidget::setDate( const ExtDate &date ) { -// const KCalendarSystem * calendar = KGlobal::locale()->calendar(); +// const KCalendarSystem * calendar = TDEGlobal::locale()->calendar(); d->m_day->blockSignals(true); d->m_month->blockSignals(true); @@ -151,7 +151,7 @@ ExtDate ExtDateWidget::date() const void ExtDateWidget::slotDateChanged( ) { -// const KCalendarSystem * calendar = KGlobal::locale()->calendar(); +// const KCalendarSystem * calendar = TDEGlobal::locale()->calendar(); ExtDate date; int y,m,day; |