summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 08:01:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 08:01:55 -0600
commit0e69180430cc0a6c356eaaa9c22d38c571727274 (patch)
tree4de94fb0924ed10d4d1c97a8ff8d485ad45cb2c0
parent5c184dbff213fb413a7559143e6317d6d0a75678 (diff)
downloadkmymoney-0e69180430cc0a6c356eaaa9c22d38c571727274.tar.gz
kmymoney-0e69180430cc0a6c356eaaa9c22d38c571727274.zip
Rename KLocale to enhance compatibility with KDE4
-rw-r--r--ChangeLog2
-rw-r--r--kmymoney2/kmymoneyutils.cpp10
-rw-r--r--kmymoney2/widgets/kmymoneycalculator.cpp10
-rw-r--r--kmymoney2/widgets/kmymoneyedit.cpp18
-rw-r--r--kmymoney2/widgets/register.cpp2
5 files changed, 21 insertions, 21 deletions
diff --git a/ChangeLog b/ChangeLog
index 85a1ef1..a7723aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2715,7 +2715,7 @@
* Updated Argentinian translation
2008-02-16 Thomas Baumgart <ipwizard@users.sourceforge.net>
- * Fixed 'WARNING: KLocale: trying to look up "" in catalog.' at appl start
+ * Fixed 'WARNING: TDELocale: trying to look up "" in catalog.' at appl start
2008-02-15 Alvaro Soliverez <asoliverez@gmail.com>
* Fixed unit tests of querytable.cpp broken when adding foreign currency fixes
diff --git a/kmymoney2/kmymoneyutils.cpp b/kmymoney2/kmymoneyutils.cpp
index 67782ec..34bf045 100644
--- a/kmymoney2/kmymoneyutils.cpp
+++ b/kmymoney2/kmymoneyutils.cpp
@@ -252,11 +252,11 @@ bool KMyMoneyUtils::appendCorrectFileExt(TQString& str, const TQString& strExtTo
void KMyMoneyUtils::checkConstants(void)
{
- Q_ASSERT(static_cast<int>(KLocale::ParensAround) == static_cast<int>(MyMoneyMoney::ParensAround));
- Q_ASSERT(static_cast<int>(KLocale::BeforeQuantityMoney) == static_cast<int>(MyMoneyMoney::BeforeQuantityMoney));
- Q_ASSERT(static_cast<int>(KLocale::AfterQuantityMoney) == static_cast<int>(MyMoneyMoney::AfterQuantityMoney));
- Q_ASSERT(static_cast<int>(KLocale::BeforeMoney) == static_cast<int>(MyMoneyMoney::BeforeMoney));
- Q_ASSERT(static_cast<int>(KLocale::AfterMoney) == static_cast<int>(MyMoneyMoney::AfterMoney));
+ Q_ASSERT(static_cast<int>(TDELocale::ParensAround) == static_cast<int>(MyMoneyMoney::ParensAround));
+ Q_ASSERT(static_cast<int>(TDELocale::BeforeQuantityMoney) == static_cast<int>(MyMoneyMoney::BeforeQuantityMoney));
+ Q_ASSERT(static_cast<int>(TDELocale::AfterQuantityMoney) == static_cast<int>(MyMoneyMoney::AfterQuantityMoney));
+ Q_ASSERT(static_cast<int>(TDELocale::BeforeMoney) == static_cast<int>(MyMoneyMoney::BeforeMoney));
+ Q_ASSERT(static_cast<int>(TDELocale::AfterMoney) == static_cast<int>(MyMoneyMoney::AfterMoney));
}
TQString KMyMoneyUtils::variableCSS(void)
diff --git a/kmymoney2/widgets/kmymoneycalculator.cpp b/kmymoney2/widgets/kmymoneycalculator.cpp
index ea6f035..cf3f7e6 100644
--- a/kmymoney2/widgets/kmymoneycalculator.cpp
+++ b/kmymoney2/widgets/kmymoneycalculator.cpp
@@ -323,17 +323,17 @@ const TQString kMyMoneyCalculator::result(void) const
txt = txt.mid(1); // get rid of the minus sign
TQString mask;
switch(TDEGlobal::locale()->negativeMonetarySignPosition()) {
- case KLocale::ParensAround:
+ case TDELocale::ParensAround:
mask = "(%1)";
break;
- case KLocale::AfterQuantityMoney:
+ case TDELocale::AfterQuantityMoney:
mask = "%1-";
break;
- case KLocale::AfterMoney:
- case KLocale::BeforeMoney:
+ case TDELocale::AfterMoney:
+ case TDELocale::BeforeMoney:
mask = "%1 -";
break;
- case KLocale::BeforeQuantityMoney:
+ case TDELocale::BeforeQuantityMoney:
mask = "-%1";
break;
}
diff --git a/kmymoney2/widgets/kmymoneyedit.cpp b/kmymoney2/widgets/kmymoneyedit.cpp
index 032c3f5..549b772 100644
--- a/kmymoney2/widgets/kmymoneyedit.cpp
+++ b/kmymoney2/widgets/kmymoneyedit.cpp
@@ -60,7 +60,7 @@ kMyMoneyMoneyValidator::kMyMoneyMoneyValidator( double bottom, double top, int d
TQValidator::State kMyMoneyMoneyValidator::validate( TQString & input, int & _p ) const
{
TQString s = input;
- KLocale * l = TDEGlobal::locale();
+ TDELocale * l = TDEGlobal::locale();
// ok, we have to re-format the number to have:
// 1. decimalSymbol == '.'
// 2. negativeSign == '-'
@@ -102,8 +102,8 @@ TQValidator::State kMyMoneyMoneyValidator::validate( TQString & input, int & _p
// the locale settings.
// If the lead-in or lead-out paren is present, remove it
// before passing the string to the TQDoubleValidator
- if(l->negativeMonetarySignPosition() == KLocale::ParensAround
- || l->positiveMonetarySignPosition() == KLocale::ParensAround) {
+ if(l->negativeMonetarySignPosition() == TDELocale::ParensAround
+ || l->positiveMonetarySignPosition() == TDELocale::ParensAround) {
TQRegExp regExp("^(\\()?([\\d-\\.]*)(\\))?$");
if(s.find(regExp) != -1) {
s = regExp.cap(2);
@@ -142,8 +142,8 @@ TQValidator::State kMyMoneyMoneyValidator::validate( TQString & input, int & _p
// is intermediate, if only the lead-out is present then it
// definitely is invalid. Nevertheless, we check for parens
// only, if the locale settings have it enabled.
- if(l->negativeMonetarySignPosition() == KLocale::ParensAround
- || l->positiveMonetarySignPosition() == KLocale::ParensAround) {
+ if(l->negativeMonetarySignPosition() == TDELocale::ParensAround
+ || l->positiveMonetarySignPosition() == TDELocale::ParensAround) {
int tmp = input.contains('(') - input.contains(')');
if(tmp > 0)
rc = Intermediate;
@@ -319,12 +319,12 @@ void kMyMoneyEdit::resetText(void)
void kMyMoneyEdit::theTextChanged(const TQString & theText)
{
- KLocale * l = TDEGlobal::locale();
+ TDELocale * l = TDEGlobal::locale();
TQString d = l->monetaryDecimalSymbol();
TQString l_text = theText;
TQString nsign, psign;
- if(l->negativeMonetarySignPosition() == KLocale::ParensAround
- || l->positiveMonetarySignPosition() == KLocale::ParensAround) {
+ if(l->negativeMonetarySignPosition() == TDELocale::ParensAround
+ || l->positiveMonetarySignPosition() == TDELocale::ParensAround) {
nsign = psign = "(";
} else {
nsign = l->negativeSign();
@@ -360,7 +360,7 @@ void kMyMoneyEdit::ensureFractionalPart(void)
void kMyMoneyEdit::ensureFractionalPart(TQString& s) const
{
- KLocale* locale = TDEGlobal::locale();
+ TDELocale* locale = TDEGlobal::locale();
TQString decimalSymbol = locale->monetaryDecimalSymbol();
if(decimalSymbol.isEmpty())
decimalSymbol = ".";
diff --git a/kmymoney2/widgets/register.cpp b/kmymoney2/widgets/register.cpp
index e07cd42..51bde1f 100644
--- a/kmymoney2/widgets/register.cpp
+++ b/kmymoney2/widgets/register.cpp
@@ -2270,7 +2270,7 @@ void Register::addGroupMarkers(void)
lastMonth = thisMonth.addMonths(-1);
yesterday = today.addDays(-1);
// a = TQDate::dayOfWeek() todays weekday (1 = Monday, 7 = Sunday)
- // b = KLocale::weekStartDay() first day of week (1 = Monday, 7 = Sunday)
+ // b = TDELocale::weekStartDay() first day of week (1 = Monday, 7 = Sunday)
weekStartOfs = today.dayOfWeek() - TDEGlobal::locale()->weekStartDay();
if(weekStartOfs < 0) {
weekStartOfs = 7 + weekStartOfs;