compile fix: missing symbol (SystemTray::getNetSystemTray()) when configured --disable-toolbar
This commit is contained in:
parent
9e17a0d6d7
commit
accb8c3fa3
1 changed files with 4 additions and 1 deletions
|
@ -1209,7 +1209,10 @@ bool BScreen::addKdeDockapp(Window client) {
|
|||
FbTk::EventHandler *evh = 0;
|
||||
FbTk::EventManager *evm = FbTk::EventManager::instance();
|
||||
|
||||
AtomHandler *handler = Fluxbox::instance()->getAtomHandler(SystemTray::getNetSystemTrayAtom(screenNumber()));
|
||||
AtomHandler* handler = 0;
|
||||
#if USE_TOOLBAR
|
||||
handler = Fluxbox::instance()->getAtomHandler(SystemTray::getNetSystemTrayAtom(screenNumber()));
|
||||
#endif
|
||||
if (handler == 0) {
|
||||
#ifdef SLIT
|
||||
if (slit() != 0 && slit()->acceptKdeDockapp())
|
||||
|
|
Loading…
Reference in a new issue