diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 21:04:57 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 21:04:57 +0000 |
commit | bf7f88413be3831a9372d323d02fc0335b9f9188 (patch) | |
tree | 516fdef9206245b40a14f99b4e3d9ef9289196e0 /src/gvcore/captionformatter.h | |
parent | e238aa77b1fb3c2f55aef2ef2c91ce52166d2cc8 (diff) | |
download | gwenview-bf7f88413be3831a9372d323d02fc0335b9f9188.tar.gz gwenview-bf7f88413be3831a9372d323d02fc0335b9f9188.zip |
TQt4 port Gwenview
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gwenview@1233720 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gvcore/captionformatter.h')
-rw-r--r-- | src/gvcore/captionformatter.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/gvcore/captionformatter.h b/src/gvcore/captionformatter.h index 29aa3a9..2438a26 100644 --- a/src/gvcore/captionformatter.h +++ b/src/gvcore/captionformatter.h @@ -21,9 +21,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifndef CAPTIONFORMATTER_H #define CAPTIONFORMATTER_H -// Qt -#include <qsize.h> -#include <qstring.h> +// TQt +#include <tqsize.h> +#include <tqstring.h> // Local #include "libgwenview_export.h" @@ -38,18 +38,18 @@ namespace Gwenview { */ class LIBGWENVIEW_EXPORT CaptionFormatter { public: - QString mPath; - QString mFileName; - QString mComment; - QString mAperture; - QString mFocalLength; - QString mExposureTime; - QString mIso; - - QSize mImageSize; + TQString mPath; + TQString mFileName; + TQString mComment; + TQString mAperture; + TQString mFocalLength; + TQString mExposureTime; + TQString mIso; + + TQSize mImageSize; int mPosition; int mCount; - QString format(const QString& format); + TQString format(const TQString& format); }; } // namespace |