From 3bc88706d5ea0eda22e338878969379f3e49be92 Mon Sep 17 00:00:00 2001 From: Andrew Janke Date: Tue, 5 Mar 2019 06:26:30 -0500 Subject: [PATCH] example: Fix "Find" menu item name --- example/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/main.cpp b/example/main.cpp index a27e9ec..176644c 100644 --- a/example/main.cpp +++ b/example/main.cpp @@ -36,7 +36,7 @@ int main(int argc, char *argv[]) QMenuBar *menuBar = new QMenuBar(mainWindow); QMenu *actionsMenu = new QMenu("Actions", menuBar); menuBar->addMenu(actionsMenu); - actionsMenu->addAction("Find..", console, SLOT(toggleShowSearchBar()), QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_F)); + actionsMenu->addAction("Find...", console, SLOT(toggleShowSearchBar()), QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_F)); actionsMenu->addAction("About Qt", &app, SLOT(aboutQt())); mainWindow->setMenuBar(menuBar);