Document 'Find and Replace' dialog

This commit is contained in:
Axel Kohlmeyer
2024-08-24 14:32:01 -04:00
parent d98a3d61da
commit 35d8a3d68e
3 changed files with 4 additions and 4 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

View File

@ -41,10 +41,10 @@ FindAndReplace::FindAndReplace(CodeEditor *_editor, QWidget *parent) :
withcase = new QCheckBox("Match case");
wrap = new QCheckBox("Wrap around");
whole = new QCheckBox("Whole word");
auto *next = new QPushButton("Next");
auto *replone = new QPushButton("Replace");
auto *replall = new QPushButton("Replace All");
auto *done = new QPushButton("Done");
auto *next = new QPushButton("&Next");
auto *replone = new QPushButton("&Replace");
auto *replall = new QPushButton("Replace &All");
auto *done = new QPushButton("&Done");
layout->addWidget(new QLabel("Find:"), 0, 0, Qt::AlignRight);
layout->addWidget(search, 0, 1, 1, 2, Qt::AlignLeft);