diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:44:46 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:44:46 -0600 |
commit | cee429821aa6f1acc97fb482d325fb4eb37376ca (patch) | |
tree | 4f55e04b7f000c854fe2b8347dcdb62d97de3c73 /libtdeedu/extdate/extdatewidget.cpp | |
parent | ab801f72ab45e8066a8ec6c533ef13c2da67e559 (diff) | |
download | tdeedu-cee429821aa6f1acc97fb482d325fb4eb37376ca.tar.gz tdeedu-cee429821aa6f1acc97fb482d325fb4eb37376ca.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
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; |