From a9bde819f2b421dcc44741156e75eca4bb5fb4f4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 24 Jan 2013 13:49:30 -0600 Subject: Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 --- kalarm/lib/timeedit.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kalarm/lib/timeedit.cpp') diff --git a/kalarm/lib/timeedit.cpp b/kalarm/lib/timeedit.cpp index 01152fcee..67a846d7a 100644 --- a/kalarm/lib/timeedit.cpp +++ b/kalarm/lib/timeedit.cpp @@ -35,7 +35,7 @@ TimeEdit::TimeEdit(TQWidget* parent, const char* name) mPmIndex(-1), mReadOnly(false) { - bool use12hour = KGlobal::locale()->use12Clock(); + bool use12hour = TDEGlobal::locale()->use12Clock(); mSpinBox = new TimeSpinBox(!use12hour, this); mSpinBox->setFixedSize(mSpinBox->sizeHint()); connect(mSpinBox, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int))); @@ -174,7 +174,7 @@ void TimeEdit::setAmPmCombo(int am, int pm) { // Insert "am" mAmIndex = 0; - mAmPm->insertItem(KGlobal::locale()->translate("am"), mAmIndex); + mAmPm->insertItem(TDEGlobal::locale()->translate("am"), mAmIndex); if (mPmIndex >= 0) mPmIndex = 1; mAmPm->setCurrentItem(mPmIndex >= 0 ? mPmIndex : mAmIndex); @@ -193,7 +193,7 @@ void TimeEdit::setAmPmCombo(int am, int pm) { // Insert "pm" mPmIndex = mAmIndex + 1; - mAmPm->insertItem(KGlobal::locale()->translate("pm"), mPmIndex); + mAmPm->insertItem(TDEGlobal::locale()->translate("pm"), mPmIndex); if (mAmIndex < 0) mAmPm->setCurrentItem(mPmIndex); } -- cgit v1.2.1