[Pkg-owncloud-commits] [owncloud-client] 129/164: OS X: Fix UI glitches related to sync folder
Sandro Knauß
hefee-guest at moszumanska.debian.org
Sun Mar 22 11:57:02 UTC 2015
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit f13dfc19a05b2a766d1b49d19bc95bd18d0b1244
Author: Markus Goetz <markus at woboq.com>
Date: Wed Mar 11 16:41:37 2015 +0100
OS X: Fix UI glitches related to sync folder
For #2113 and #2947
---
src/gui/settingsdialog.cpp | 3 +++
src/gui/settingsdialogmac.cpp | 7 +++++++
2 files changed, 10 insertions(+)
diff --git a/src/gui/settingsdialog.cpp b/src/gui/settingsdialog.cpp
index 208b11c..acd80d9 100644
--- a/src/gui/settingsdialog.cpp
+++ b/src/gui/settingsdialog.cpp
@@ -42,6 +42,9 @@ namespace {
namespace OCC {
+//
+// Whenever you change something here check both settingsdialog.cpp and settingsdialogmac.cpp !
+//
SettingsDialog::SettingsDialog(ownCloudGui *gui, QWidget *parent) :
QDialog(parent)
, _ui(new Ui::SettingsDialog)
diff --git a/src/gui/settingsdialogmac.cpp b/src/gui/settingsdialogmac.cpp
index 261fefc..e111399 100644
--- a/src/gui/settingsdialogmac.cpp
+++ b/src/gui/settingsdialogmac.cpp
@@ -33,6 +33,9 @@
namespace OCC {
+//
+// Whenever you change something here check both settingsdialog.cpp and settingsdialogmac.cpp !
+//
SettingsDialogMac::SettingsDialogMac(ownCloudGui *gui, QWidget *parent)
: MacPreferencesWindow(parent)
{
@@ -82,6 +85,10 @@ SettingsDialogMac::SettingsDialogMac(ownCloudGui *gui, QWidget *parent)
connect( folderMan, SIGNAL(folderSyncStateChange(QString)),
this, SLOT(slotSyncStateChange(QString)));
+ connect( _accountSettings, SIGNAL(folderChanged()), gui, SLOT(slotFoldersChanged()));
+ connect( _accountSettings, SIGNAL(openFolderAlias(const QString&)),
+ gui, SLOT(slotFolderOpenAction(QString)));
+
connect( ProgressDispatcher::instance(), SIGNAL(progressInfo(QString, Progress::Info)),
_accountSettings, SLOT(slotSetProgress(QString, Progress::Info)) );
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list