diff options
Diffstat (limited to 'src/gvcore/documentloadedimpl.h')
-rw-r--r-- | src/gvcore/documentloadedimpl.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/gvcore/documentloadedimpl.h b/src/gvcore/documentloadedimpl.h index 6951090..42b8b0b 100644 --- a/src/gvcore/documentloadedimpl.h +++ b/src/gvcore/documentloadedimpl.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,32 +21,33 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifndef DOCUMENTLOADEDIMPL_H #define DOCUMENTLOADEDIMPL_H -// Qt -#include <qimage.h> +// TQt +#include <tqimage.h> // Local #include "documentimpl.h" -class QFile; +class TQFile; namespace Gwenview { class Document; class DocumentLoadedImpl : public DocumentImpl { Q_OBJECT + TQ_OBJECT public: DocumentLoadedImpl(Document* document); void init(); ~DocumentLoadedImpl(); void transform(ImageUtils::Orientation); - QString save(const KURL&, const QCString& format) const; + TQString save(const KURL&, const TQCString& format) const; virtual MimeTypeUtils::Kind urlKind() const { return MimeTypeUtils::KIND_RASTER_IMAGE; } virtual bool canBeSaved() const { return true; } protected: - virtual QString localSave(QFile* file, const QCString& format) const; + virtual TQString localSave(TQFile* file, const TQCString& format) const; }; } // namespace |