Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-04-13 16:47:44 +0300
committerGitHub <noreply@github.com>2022-04-13 16:47:44 +0300
commit4033411ffadb7d9491fafe89a2dc72f47173897e (patch)
tree4583f645f7a13f45ace8af34f9543b545f427cbd /src/gui/accountsettings.h
parent5205defcd23a65d4e7ed889e005d082745bf340b (diff)
Use the folder object directly instead of looking it up by its name (#9583)
Diffstat (limited to 'src/gui/accountsettings.h')
-rw-r--r--src/gui/accountsettings.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/accountsettings.h b/src/gui/accountsettings.h
index 7cece436c..6de697ab1 100644
--- a/src/gui/accountsettings.h
+++ b/src/gui/accountsettings.h
@@ -60,7 +60,7 @@ public:
signals:
void folderChanged();
- void showIssuesList(const QString &folderAlias);
+ void showIssuesList();
public slots:
void slotOpenOC();
@@ -81,7 +81,7 @@ protected slots:
void slotFolderWizardRejected();
void slotDeleteAccount();
void slotToggleSignInState();
- void refreshSelectiveSyncStatus();
+ [[deprecated]] void refreshSelectiveSyncStatus();
void slotCustomContextMenuRequested(const QPoint &);
void slotFolderListClicked(const QModelIndex &indx);
void doExpand();
@@ -94,7 +94,7 @@ private:
void createAccountToolbox();
/// Returns the alias of the selected folder, empty string if none
- QString selectedFolderAlias() const;
+ Folder *selectedFolder() const;
Ui::AccountSettings *ui;