diff options
| author | Kai Uwe Broulik <[email protected]> | 2019-06-25 15:26:59 +0200 |
|---|---|---|
| committer | Kai Uwe Broulik <[email protected]> | 2019-06-25 15:26:59 +0200 |
| commit | 5d83ceeb339c56e6b9a241e809cff2dd0a260fcb (patch) | |
| tree | 1c18deeeca1cb653cb8c7acc23dcbd4a8db6a3f4 | |
| parent | 8a942bb3d32784f37eabb75aceb58c8b965c77b0 (diff) | |
Fix crash without baloo
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 1eed8c826..19f790662 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1471,6 +1471,7 @@ void DolphinMainWindow::setupDockWidgets() const QString panelWhatsThis = xi18nc("@info:whatsthis", "<para>To show or " "hide panels like this go to <interface>Control|Panels</interface> " "or <interface>View|Panels</interface>.</para>"); +#ifdef HAVE_BALOO actionCollection()->action(QStringLiteral("show_information_panel")) ->setWhatsThis(xi18nc("@info:whatsthis", "<para> This toggles the " "<emphasis>information</emphasis> panel at the right side of the " @@ -1478,6 +1479,7 @@ void DolphinMainWindow::setupDockWidgets() "about the items your mouse is hovering over or about the selected " "items. Otherwise it informs you about the currently viewed folder.<nl/>" "For single items a preview of their contents is provided.</para>")); +#endif infoDock->setWhatsThis(xi18nc("@info:whatsthis", "<para>This panel " "provides in-depth information about the items your mouse is " "hovering over or about the selected items. Otherwise it informs " |
