summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/plugins/src/imageformats/mng/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-04-21 23:28:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-21 23:28:33 +0900
commit1df632a0e6e550a5a100247c6b4713078e78f413 (patch)
treee8577c3d310285ebb4c8beea37998f408286bda3 /tqtinterface/qt4/plugins/src/imageformats/mng/main.cpp
parent012b00740f33c01949c88d7ea97e2dee81fabb41 (diff)
downloadexperimental-r14.0.7.tar.gz
experimental-r14.0.7.zip
Removed unnecessary and/or TDE-unrelated code.r14.0.7
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tqtinterface/qt4/plugins/src/imageformats/mng/main.cpp')
-rw-r--r--tqtinterface/qt4/plugins/src/imageformats/mng/main.cpp59
1 files changed, 0 insertions, 59 deletions
diff --git a/tqtinterface/qt4/plugins/src/imageformats/mng/main.cpp b/tqtinterface/qt4/plugins/src/imageformats/mng/main.cpp
deleted file mode 100644
index ad57414..0000000
--- a/tqtinterface/qt4/plugins/src/imageformats/mng/main.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-#ifndef TQT_CLEAN_NAMESPACE
-#define TQT_CLEAN_NAMESPACE
-#endif
-
-#include <tqimageformatplugin.h>
-
-#ifndef TQT_NO_IMAGEFORMATPLUGIN
-
-#ifdef TQT_NO_IMAGEIO_MNG
-#undef TQT_NO_IMAGEIO_MNG
-#endif
-#include "../../../../src/kernel/qmngio.cpp"
-
-class MNGFormat : public TQImageFormatPlugin
-{
-public:
- MNGFormat();
-
- TQStringList keys() const;
- bool loadImage( const TQString &format, const TQString &filename, TQImage *image );
- bool saveImage( const TQString &format, const TQString &filename, const TQImage &image );
- bool installIOHandler( const TQString & );
-};
-
-MNGFormat::MNGFormat()
-{
-}
-
-
-TQStringList MNGFormat::keys() const
-{
- TQStringList list;
- list << "MNG";
-
- return list;
-}
-
-bool MNGFormat::loadImage( const TQString &, const TQString &, TQImage * )
-{
- return FALSE;
-}
-
-bool MNGFormat::saveImage( const TQString &, const TQString &, const TQImage& )
-{
- return FALSE;
-}
-
-bool MNGFormat::installIOHandler( const TQString &name )
-{
- if ( name != "MNG" )
- return FALSE;
-
- qInitMngIO();
- return TRUE;
-}
-
-TQ_EXPORT_PLUGIN( MNGFormat )
-
-#endif // TQT_NO_IMAGEFORMATPLUGIN