diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-15 23:21:29 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-15 23:21:29 -0600 |
commit | 7811b327ac412b1afb4c8cc16424d642457cc6d7 (patch) | |
tree | 12892048860d4e253ae16e68a0eb55702e2aff32 /src/common/nokde/nokde_tdelocale.h | |
parent | b0699f7c1623811cff1fe3794521546d30e84ee1 (diff) | |
download | piklab-7811b327ac412b1afb4c8cc16424d642457cc6d7.tar.gz piklab-7811b327ac412b1afb4c8cc16424d642457cc6d7.zip |
Fix prior commit
Diffstat (limited to 'src/common/nokde/nokde_tdelocale.h')
-rw-r--r-- | src/common/nokde/nokde_tdelocale.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/common/nokde/nokde_tdelocale.h b/src/common/nokde/nokde_tdelocale.h new file mode 100644 index 0000000..90b5f47 --- /dev/null +++ b/src/common/nokde/nokde_tdelocale.h @@ -0,0 +1,17 @@ +#ifndef NOKDE_KLOCALE_H +#define NOKDE_KLOCALE_H + +#undef TDECORE_EXPORT +#define TDECORE_EXPORT + +#undef KDE_DEPRECATED +#define KDE_DEPRECATED + +#undef I18N_NOOP +#define I18N_NOOP(x) (x) +#include <tqstring.h> +inline TQString i18n(const TQString &text) { return text; } +extern TQString i18n(const TQString &index, const TQString &text); +extern TQString locate(const TQString &, const TQString &); + +#endif |