┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.h
diff options
context:
space:
mode:
authorElvis Angelaccio <[email protected]>2018-01-21 12:18:21 +0100
committerElvis Angelaccio <[email protected]>2018-02-10 19:40:15 +0100
commit87e8d0ba5f80f53a62a3951537b60a24e72e8460 (patch)
tree902623094659c880fe2a29c8632464490e3a9d13 /src/dolphinmainwindow.h
parent9fbf7a0b624aee6b116efdf69462e73f0275fab6 (diff)
Build TerminalPanel also on Windows
Summary: terminalpanel.cpp *should* compile on Windows, so there is no reason to remove it from the build and use tons of #ifdefs in dolphinmainwindow. We still keep the terminal panel disabled on Windows (i.e. the two remaining #ifndef Q_OS_WIN in dolphinmainwindow), because it is probably not functional. But at least we won't break the Windows CI every time someone touches the terminal panel code (see e.g. 2e942237c9). Test Plan: Builds on Linux, someone on Windows should test this patch if possible. Reviewers: #dolphin, #craft Differential Revision: https://phabricator.kde.org/D10006
Diffstat (limited to 'src/dolphinmainwindow.h')
-rw-r--r--src/dolphinmainwindow.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h
index e81793b0f..5e900e930 100644
--- a/src/dolphinmainwindow.h
+++ b/src/dolphinmainwindow.h
@@ -47,9 +47,7 @@ class KNewFileMenu;
class QToolButton;
class QIcon;
class PlacesPanel;
-#ifndef Q_OS_WIN
class TerminalPanel;
-#endif
/**
* @short Main window for Dolphin.
@@ -517,9 +515,7 @@ private:
KIO::Job* m_lastHandleUrlStatJob;
-#ifndef Q_OS_WIN
TerminalPanel* m_terminalPanel;
-#endif
PlacesPanel* m_placesPanel;
bool m_tearDownFromPlacesRequested;
};