aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vcsbase/vcsbaseeditorconfig.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2024-02-19 18:06:32 +0100
committerhjk <hjk@qt.io>2024-02-20 08:09:23 +0000
commit15fc626a78fea88747bcf39d894bfc219b4f53e7 (patch)
tree08aa663196b57712ae00c8993d9bd0f13d638beb /src/plugins/vcsbase/vcsbaseeditorconfig.cpp
parentd56ce22baeebb8ddf79d0c2d04fcf2cc8733defa (diff)
VcsBase: Remove unused OptionMapping constructor
Change-Id: I9f2dac687e6178a48790314fbb361c479666ec1b Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'src/plugins/vcsbase/vcsbaseeditorconfig.cpp')
-rw-r--r--src/plugins/vcsbase/vcsbaseeditorconfig.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/plugins/vcsbase/vcsbaseeditorconfig.cpp b/src/plugins/vcsbase/vcsbaseeditorconfig.cpp
index fdf8542ab3..d629c0f88c 100644
--- a/src/plugins/vcsbase/vcsbaseeditorconfig.cpp
+++ b/src/plugins/vcsbase/vcsbaseeditorconfig.cpp
@@ -267,13 +267,6 @@ void VcsBaseEditorConfig::executeCommand()
emit commandExecutionRequested();
}
-VcsBaseEditorConfig::OptionMapping::OptionMapping(const QString &option, QObject *obj) :
- object(obj)
-{
- if (!option.isEmpty())
- options << option;
-}
-
VcsBaseEditorConfig::OptionMapping::OptionMapping(const QStringList &optionList, QObject *obj) :
options(optionList),
object(obj)