diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 08:07:09 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 08:07:09 -0600 |
commit | d66d7dc716f2ebb8448d269bbc3a6265cf257f5e (patch) | |
tree | 3072b9159490cddb0196c2246899d0281a7f0520 | |
parent | 44bd352cdcdbcc9d2b2c49f41f2bbcd7762c5a6b (diff) | |
download | tellico-d66d7dc716f2ebb8448d269bbc3a6265cf257f5e.tar.gz tellico-d66d7dc716f2ebb8448d269bbc3a6265cf257f5e.zip |
Rename KLocale to enhance compatibility with KDE4
-rw-r--r-- | src/gui/datewidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/datewidget.cpp b/src/gui/datewidget.cpp index 375f825..52e51fb 100644 --- a/src/gui/datewidget.cpp +++ b/src/gui/datewidget.cpp @@ -43,7 +43,7 @@ SpinBox::SpinBox(int min, int max, TQWidget *parent) : TQSpinBox(min, max, 1, pa DateWidget::DateWidget(TQWidget* parent_, const char* name_) : TQWidget(parent_, name_) { TQHBoxLayout* l = new TQHBoxLayout(this, 0, 4); - KLocale* locale = TDEGlobal::locale(); + TDELocale* locale = TDEGlobal::locale(); // 0 allows empty value m_daySpin = new SpinBox(0, 31, this); |