diff options
Diffstat (limited to 'kspread/valueparser.h')
-rw-r--r-- | kspread/valueparser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/valueparser.h b/kspread/valueparser.h index 120c2734..0d00aa49 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. |