Subversion Repositories Scribus

Compare Revisions

Ignore whitespace Rev 4227 → Rev 4226

/trunk/Scribus/scribus/scribus.cpp
7309,10 → 7309,10
PSDriver = dlopen(pfad, RTLD_LAZY);
if (!PSDriver)
{
std::cout << "Can't find Plugin" << dlerror() << endl;
std::cout << "Can't find Plugin" << endl;
return NULL;
}
dlerror(); // Make really sure error flag is clear
dlerror();
demo = (sdem)dlsym(PSDriver, "Run");
if ((error = dlerror()) != NULL)
{
7400,10 → 7400,10
PDFDriver = dlopen(pfad, RTLD_NOW);
if (!PDFDriver)
{
std::cout << "Can't find Plugin" << dlerror() << endl;
std::cout << "Can't find Plugin" << endl;
return false;
}
dlerror(); // Make really sure error flag is clear
dlerror();
demo = (sdem)dlsym(PDFDriver, "Run");
if ((error = dlerror()) != NULL)
{
8151,7 → 8151,7
mo = dlopen(pfad, RTLD_LAZY | RTLD_GLOBAL);
if (!mo)
{
std::cout << "Can't find Plug-in" << dlerror() << endl;
std::cout << "Can't find Plug-in" << endl;
return;
}
}