// // C++ Implementation: embeddata // // Description: // // // Author: Remi Villatel , (C) 2005 // // Copyright: See COPYING file that comes with this distribution // // #include "embeddata.h" void qInitImages_KWinMallory() { if ( !factory ) { factory = new MimeSourceFactory_KWinMallory; TQMimeSourceFactory::defaultFactory()->addFactory( factory ); } } void qCleanupImages_KWinMallory() { if ( factory ) { TQMimeSourceFactory::defaultFactory()->removeFactory( factory ); delete factory; factory = 0; } }