| Summary: | error printed to konsole when opening filter dialog | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Netterfield <netterfield> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Netterfield
2004-08-12 05:12:16 UTC
CVS commit by staikos: check for symbol first to avoid warning CCMAIL: 87014-done@bugs.kde.org M +3 -1 pluginloader.cpp 1.12 --- kdeextragear-2/kst/kst/pluginloader.cpp #1.11:1.12 @@ -72,5 +72,7 @@ Plugin *PluginLoader::loadPlugin(const Q plug->_symbol = plug->_lib->symbol(plug->_data._name.latin1()); + if (plug->_lib->hasSymbol("parameterName")) { plug->_parameterName = plug->_lib->symbol("parameterName"); + } if (!plug->_symbol) { |