plugin filters now working in windows

This commit is contained in:
lostjared
2017-02-14 07:28:41 -08:00
parent 43d875c0e7
commit 51eae82aa5
50 changed files with 344 additions and 9 deletions

View File

@@ -80,13 +80,13 @@ bool Plugin::loadPlugin(const std::string &text) {
pixel_function = (pixel) library->resolve("pixel");
if(!pixel_function) {
QMessageBox::information(0, "Could not find pixel function", text.c_str());
QMessageBox::information(0, text.c_str(), "Could not find pixel function");
return false;
}
complete_function = (complete) library->resolve("complete");
if(!complete_function) {
QMessageBox::information(0, "Could not find complete function", text.c_str());
QMessageBox::information(0, text.c_str(), "Could not find complete function");
return false;
}
mod_name = text;