Skip to content

Commit 0772c18

Browse files
Merge branch 'master' into qstring-refactor
Signed-off-by: Integral <[email protected]>
2 parents bb6a140 + ad492ef commit 0772c18

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/clang-format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/checkout@v4
10-
- uses: cpp-linter/[email protected].2
10+
- uses: cpp-linter/[email protected].3
1111
id: linter
1212
env:
1313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

src/gui/wizard/owncloudsetuppage.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ OwncloudSetupPage::OwncloudSetupPage(QWidget *parent)
6363
const auto serverObject = serverJson.toObject();
6464
const auto serverName = serverObject.value("name").toString();
6565
const auto serverUrl = serverObject.value("url").toString();
66-
const auto serverDisplayString = QStringLiteral("%1 (%2)").arg(serverName, serverUrl);
67-
_ui.comboBox->addItem(serverDisplayString, serverUrl);
66+
_ui.comboBox->addItem(serverName, serverUrl);
6867
}
6968
} else if (theme->forceOverrideServerUrl()) {
7069
_ui.comboBox->hide();

0 commit comments

Comments
 (0)