klocalizedstring.h 296 B

1234567891011121314151617
  1. #ifndef KLOCALIZEDSTRING_H
  2. #define KLOCALIZEDSTRING_H
  3. #include <QString>
  4. #ifdef _WIN32
  5. __declspec(dllexport)
  6. #endif
  7. QString tr2xi18n(const char* text, const char* comment = 0);
  8. #ifdef _WIN32
  9. __declspec(dllexport)
  10. #endif
  11. QString tr2i18n(const char* text, const char* comment = 0);
  12. #endif