// // 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; QMimeSourceFactory::defaultFactory()->addFactory( factory ); } } void qCleanupImages_KWinMallory() { if ( factory ) { QMimeSourceFactory::defaultFactory()->removeFactory( factory ); delete factory; factory = 0; } }