m_controlButton(0),
m_updateToolBarTimer(0),
m_lastHandleUrlStatJob(0),
+#ifndef Q_OS_WIN
m_terminalPanel(0),
+#endif
m_placesPanel(0),
m_tearDownFromPlacesRequested(false)
{
void DolphinMainWindow::slotStorageTearDownFromPlacesRequested(const QString& mountPath)
{
+#ifndef Q_OS_WIN
if (m_terminalPanel->currentWorkingDirectory().startsWith(mountPath)) {
m_tearDownFromPlacesRequested = true;
m_terminalPanel->goHome();
} else {
m_placesPanel->proceedWithTearDown();
}
+#endif
}
void DolphinMainWindow::slotStorageTearDownExternallyRequested(const QString& mountPath)
{
+#ifndef Q_OS_WIN
if (m_terminalPanel->currentWorkingDirectory().startsWith(mountPath)) {
m_tearDownFromPlacesRequested = false;
m_terminalPanel->goHome();
}
+#endif
}
void DolphinMainWindow::setupActions()