aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/changeselectiondialog.h
diff options
context:
space:
mode:
authorhjk <[email protected]>2021-07-30 16:46:27 +0200
committerhjk <[email protected]>2021-08-02 14:40:33 +0000
commitff57cb548d2c528a42fa2870b2486cddc08acfb7 (patch)
tree0c7f371818d436d79cd3d65fac1c98de4d2391bf /src/plugins/git/changeselectiondialog.h
parent17f907da9bd73d9b1515cbdd269c93f0061b7071 (diff)
Vcs: Use more FilePath for file paths
Change-Id: I855cde65d034a9647972a7fddf1e8266d7ccfa88 Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/git/changeselectiondialog.h')
-rw-r--r--src/plugins/git/changeselectiondialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/git/changeselectiondialog.h b/src/plugins/git/changeselectiondialog.h
index 32fd47590f6..edaaf61c630 100644
--- a/src/plugins/git/changeselectiondialog.h
+++ b/src/plugins/git/changeselectiondialog.h
@@ -54,12 +54,12 @@ class ChangeSelectionDialog : public QDialog
{
Q_OBJECT
public:
- ChangeSelectionDialog(const QString &workingDirectory, Utils::Id id, QWidget *parent);
+ ChangeSelectionDialog(const Utils::FilePath &workingDirectory, Utils::Id id, QWidget *parent);
~ChangeSelectionDialog() override;
QString change() const;
- QString workingDirectory() const;
+ Utils::FilePath workingDirectory() const;
ChangeCommand command() const;
private:
@@ -80,7 +80,7 @@ private:
Utils::Environment m_gitEnvironment;
ChangeCommand m_command = NoCommand;
QStringListModel *m_changeModel = nullptr;
- QString m_oldWorkingDir;
+ Utils::FilePath m_oldWorkingDir;
};
} // namespace Internal