Skip to content

Commit

Permalink
chore: Update debuginfod namings (#369)
Browse files Browse the repository at this point in the history
Log: Update debuginfod namings
  • Loading branch information
ArchieMeng authored Nov 22, 2024
1 parent adecc3d commit 7a7605d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/assets/other/default-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@
},
{
"key": "debuginfod",
"name": "debuginfod",
"name": "Debuginfod",
"options": [
{
"key": "enable_debuginfod",
Expand All @@ -434,7 +434,7 @@
},
{
"key": "debuginfod_urls",
"name": "debuginfod urls",
"name": "debuginfod URLs",
"type": "lineedit",
"default": "https://debuginfod.deepin.com"
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ void Service::showHideDebuginfodUrlsOptions(bool isShow)

if (strcmp(widget->metaObject()->className(), "QLabel") == 0) {
QString text = (qobject_cast<QLabel *>(widget))->text();
if (QObject::tr("debuginfod urls") == text) {
if (QObject::tr("debuginfod URLs") == text) {
QWidget *optionWidget = widget;
QWidget *parentWidget = widget->parentWidget();
QWidget *wrapWidget = parentWidget ? parentWidget->parentWidget() : nullptr;
Expand Down

0 comments on commit 7a7605d

Please sign in to comment.