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/documentjpegloadedimpl.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/documentjpegloadedimpl.h')
-rw-r--r-- | src/gvcore/documentjpegloadedimpl.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/gvcore/documentjpegloadedimpl.h b/src/gvcore/documentjpegloadedimpl.h index 94e9e00..2b2a83a 100644 --- a/src/gvcore/documentjpegloadedimpl.h +++ b/src/gvcore/documentjpegloadedimpl.h @@ -1,7 +1,7 @@ // vim: set tabstop=4 shiftwidth=4 noexpandtab /* Gwenview - A simple image viewer for KDE -Copyright 2000-2004 Aurélien Gâteau +Copyright 2000-2004 Aur�lien G�teau This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -21,8 +21,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifndef DOCUMENTJPEGLOADEDIMPL_H #define DOCUMENTJPEGLOADEDIMPL_H -// Qt -#include <qimage.h> +// TQt +#include <tqimage.h> // Local #include "documentloadedimpl.h" @@ -34,24 +34,25 @@ class DocumentJPEGLoadedImplPrivate; class DocumentJPEGLoadedImpl : public DocumentLoadedImpl { Q_OBJECT + TQ_OBJECT public: - DocumentJPEGLoadedImpl(Document* document, const QByteArray& rawData); + DocumentJPEGLoadedImpl(Document* document, const TQByteArray& rawData); ~DocumentJPEGLoadedImpl(); void init(); - QString comment() const; - void setComment(const QString&); + TQString comment() const; + void setComment(const TQString&); Document::CommentState commentState() const; - QString aperture() const; - QString exposureTime() const; - QString iso() const; - QString focalLength() const; + TQString aperture() const; + TQString exposureTime() const; + TQString iso() const; + TQString focalLength() const; void transform(ImageUtils::Orientation); protected: - QString localSave(QFile*, const QCString& format) const; + TQString localSave(TQFile*, const TQCString& format) const; private: DocumentJPEGLoadedImplPrivate* d; |