diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
commit | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (patch) | |
tree | d087071b1e8fcf79698938efec19f8e48bab0799 /kalarm/lib/timeedit.cpp | |
parent | 5c4a80ead2b1fe57dc6a8c29d0368792344cd61e (diff) | |
download | tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.tar.gz tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kalarm/lib/timeedit.cpp')
-rw-r--r-- | kalarm/lib/timeedit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |