summaryrefslogtreecommitdiffstats
path: root/kspread/valueparser.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 08:03:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 08:03:36 -0600
commit0dda6e85e171acf1a73dc8d3d1f67b4fcc9b1ae7 (patch)
treeb55740ff9d132b25792ca3fd60e37497402b5036 /kspread/valueparser.h
parentac04782336b6a026b44df9d51ba9ca008a712da2 (diff)
downloadkoffice-0dda6e85e171acf1a73dc8d3d1f67b4fcc9b1ae7.tar.gz
koffice-0dda6e85e171acf1a73dc8d3d1f67b4fcc9b1ae7.zip
Rename KLocale to enhance compatibility with KDE4
Diffstat (limited to 'kspread/valueparser.h')
-rw-r--r--kspread/valueparser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/valueparser.h b/kspread/valueparser.h
index 120c2734a..0d00aa49f 100644
--- a/kspread/valueparser.h
+++ b/kspread/valueparser.h
@@ -25,7 +25,7 @@
#include "kspread_global.h"
-class KLocale;
+class TDELocale;
namespace KSpread
{
@@ -40,9 +40,9 @@ Value in the desired format.
class ValueParser {
public:
/** constructor */
- ValueParser (KLocale *locale);
+ ValueParser (TDELocale *locale);
- KLocale* locale();
+ TDELocale* locale();
/** try to parse the text in a given cell and set value accordingly */
void parse (const TQString& str, Cell *cell);
@@ -56,7 +56,7 @@ class ValueParser {
Value tryParseTime (const TQString& str, bool *ok = 0);
protected:
- KLocale* parserLocale;
+ TDELocale* parserLocale;
// Try to parse the text as a bool/number/date/time/etc.
// Helpers for parse.