summaryrefslogtreecommitdiffstats
path: root/src/gvcore/documentjpegloadedimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gvcore/documentjpegloadedimpl.h')
-rw-r--r--src/gvcore/documentjpegloadedimpl.h23
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;