mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
fix asterisk squish to type
This commit is contained in:
parent
25805cbe78
commit
57743f126f
1 changed files with 5 additions and 5 deletions
|
@ -23,14 +23,14 @@
|
|||
GVRMainWindow::GVRMainWindow(QWidget* parent) :
|
||||
QMainWindow(parent)
|
||||
{
|
||||
QMenu *fileMenu = new QMenu("File");
|
||||
QMenu *helpMenu = new QMenu("Help");
|
||||
QMenu* fileMenu = new QMenu("File");
|
||||
QMenu* helpMenu = new QMenu("Help");
|
||||
|
||||
menuBar()->addMenu(fileMenu);
|
||||
menuBar()->addMenu(helpMenu);
|
||||
|
||||
QAction *goToAddress = new QAction("Go to Address", fileMenu);
|
||||
QAction *aboutQt = new QAction("About Qt", helpMenu);
|
||||
QAction* goToAddress = new QAction("Go to Address", fileMenu);
|
||||
QAction* aboutQt = new QAction("About Qt", helpMenu);
|
||||
|
||||
fileMenu->addAction(goToAddress);
|
||||
helpMenu->addAction(aboutQt);
|
||||
|
@ -60,4 +60,4 @@ void GVRMainWindow::showAddressBar() {
|
|||
|
||||
connect(addressDialog, &QInputDialog::textValueSelected,
|
||||
DependencyManager::get<AddressManager>().data(), &AddressManager::handleLookupString);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue