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