-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: modify icon of reversedebug plugin
modify icon of reversedebug plugin
- Loading branch information
1 parent
2805726
commit 09436c6
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,7 +139,7 @@ EventFilterDialog::EventFilterDialog( | |
d->x11Flags = x11Flags; | ||
d->signalFlags = signalFlags; | ||
setWindowTitle(tr("event filter.")); | ||
setIcon(QIcon(":/core/images/[email protected]")); | ||
setIcon(QIcon::fromTheme("ide")); | ||
|
||
setupUi(); | ||
} | ||
|
@@ -334,7 +334,7 @@ void EventFilterDialog::setupUi() | |
d->maxHeapSize = new DLineEdit(mainFrame); | ||
d->maxHeapSize->setPlaceholderText(tr("default is 0, in KB")); | ||
d->maxStackSize = new DLineEdit(mainFrame); | ||
d->maxStackSize->setPlaceholderText(tr("default is 256, unit Byte")); | ||
d->maxStackSize->setPlaceholderText(tr("default is 32, unit Byte")); | ||
d->maxParamSize = new DLineEdit(mainFrame); | ||
d->maxParamSize->setPlaceholderText(tr("default is 256, unit Byte")); | ||
d->onlyCurrentThread = new DCheckBox(mainFrame); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ LoadCoreDialog::LoadCoreDialog(QWidget *parent) | |
d(new StartCoredumpDialogPrivate) | ||
{ | ||
setTitle(tr("Event Debugger Configure")); | ||
setIcon(QIcon(":/core/images/[email protected]")); | ||
setIcon(QIcon::fromTheme("ide")); | ||
|
||
setupUi(); | ||
} | ||
|