You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
549 B

//
// C++ Implementation: embeddata
//
// Description:
//
//
// Author: Remi Villatel <maxilys@tele2.fr>, (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;
}
}