mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 08:49:05 +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) :
|
GVRMainWindow::GVRMainWindow(QWidget* parent) :
|
||||||
QMainWindow(parent)
|
QMainWindow(parent)
|
||||||
{
|
{
|
||||||
QMenu *fileMenu = new QMenu("File");
|
QMenu* fileMenu = new QMenu("File");
|
||||||
QMenu *helpMenu = new QMenu("Help");
|
QMenu* helpMenu = new QMenu("Help");
|
||||||
|
|
||||||
menuBar()->addMenu(fileMenu);
|
menuBar()->addMenu(fileMenu);
|
||||||
menuBar()->addMenu(helpMenu);
|
menuBar()->addMenu(helpMenu);
|
||||||
|
|
||||||
QAction *goToAddress = new QAction("Go to Address", fileMenu);
|
QAction* goToAddress = new QAction("Go to Address", fileMenu);
|
||||||
QAction *aboutQt = new QAction("About Qt", helpMenu);
|
QAction* aboutQt = new QAction("About Qt", helpMenu);
|
||||||
|
|
||||||
fileMenu->addAction(goToAddress);
|
fileMenu->addAction(goToAddress);
|
||||||
helpMenu->addAction(aboutQt);
|
helpMenu->addAction(aboutQt);
|
||||||
|
@ -60,4 +60,4 @@ void GVRMainWindow::showAddressBar() {
|
||||||
|
|
||||||
connect(addressDialog, &QInputDialog::textValueSelected,
|
connect(addressDialog, &QInputDialog::textValueSelected,
|
||||||
DependencyManager::get<AddressManager>().data(), &AddressManager::handleLookupString);
|
DependencyManager::get<AddressManager>().data(), &AddressManager::handleLookupString);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue