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 /kig/misc/common.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 'kig/misc/common.cpp')
-rw-r--r-- | kig/misc/common.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kig/misc/common.cpp b/kig/misc/common.cpp index b41b9284..287bde1f 100644 --- a/kig/misc/common.cpp +++ b/kig/misc/common.cpp @@ -356,17 +356,17 @@ double getDoubleFromUser( const TQString& caption, const TQString& label, double #endif #if KDE_IS_VERSION( 3, 1, 90 ) TQString input = KInputDialog::getText( - caption, label, KGlobal::locale()->formatNumber( value, decimals ), + caption, label, TDEGlobal::locale()->formatNumber( value, decimals ), ok, parent, "getDoubleFromUserDialog", &vtor ); #else TQString input = KLineEditDlg::getText( caption, label, - KGlobal::locale()->formatNumber( value, decimals ), + TDEGlobal::locale()->formatNumber( value, decimals ), ok, parent, &vtor ); #endif bool myok = true; - double ret = KGlobal::locale()->readNumber( input, &myok ); + double ret = TDEGlobal::locale()->readNumber( input, &myok ); if ( ! myok ) ret = input.toDouble( & myok ); if ( ok ) *ok = myok; |