diff options
Diffstat (limited to 'src/global.h')
-rw-r--r-- | src/global.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/global.h b/src/global.h index 6337358..805836b 100644 --- a/src/global.h +++ b/src/global.h @@ -21,7 +21,7 @@ #ifndef GLOBAL_H #define GLOBAL_H -#include <qstring.h> +#include <tqstring.h> #include "aboutdata.h" class LikeBack; @@ -41,7 +41,7 @@ class KAboutData; class Global { private: - static QString s_customSavesFolder; + static TQString s_customSavesFolder; public: // Global Variables: static LikeBack *likeBack; @@ -54,15 +54,15 @@ class Global static AboutData basketAbout; // Application Folders: - static void setCustomSavesFolder(const QString &folder); - static QString savesFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/". - static QString basketsFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/baskets/". - static QString backgroundsFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/backgrounds/". - static QString templatesFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/templates/". - static QString tempCutFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/temp-cut/". (was ".tmp/") + static void setCustomSavesFolder(const TQString &folder); + static TQString savesFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/". + static TQString basketsFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/baskets/". + static TQString backgroundsFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/backgrounds/". + static TQString templatesFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/templates/". + static TQString tempCutFolder(); /// << @return e.g. "/home/username/.kde/share/apps/basket/temp-cut/". (was ".tmp/") // Various Things: - static QString openNoteIcon(); /// << @return the icon used for the "Open" action on notes. + static TQString openNoteIcon(); /// << @return the icon used for the "Open" action on notes. static KMainWindow* mainWindow(); static KConfig* config(); static KAboutData* about() { return &basketAbout; }; |