Merge branch 'master' into new_zoom_buttons_panel
[situare] / src / ui / mainwindow.cpp
index 7ec617d..fe9b120 100644 (file)
@@ -92,15 +92,18 @@ void MainWindow::createMenus()
 
     m_toSettingsAct = new QAction(tr("Settings"), this);
     m_toSettingsAct->setObjectName(tr("Settings"));
-    connect(m_toSettingsAct, SIGNAL(triggered()), this, SLOT(openSettingsDialog()));
+    connect(m_toSettingsAct, SIGNAL(triggered()),
+        this, SLOT(openSettingsDialog()));
     m_gpsToggleAct = new QAction(tr("GPS"), this);
     m_gpsToggleAct->setCheckable(true);
     m_gpsToggleAct->setChecked(true);
-    connect(m_gpsToggleAct, SIGNAL(toggled(bool)), this, SLOT(gpsActionToggled(bool)));
+    connect(m_gpsToggleAct, SIGNAL(toggled(bool)),
+        this, SLOT(gpsActionToggled(bool)));
     m_autoCenteringAct = new QAction(tr("Auto centering"), this);
     m_autoCenteringAct->setCheckable(true);
     m_autoCenteringAct->setChecked(true);
-    connect(m_autoCenteringAct, SIGNAL(toggled(bool)), this, SLOT(autoCenteringToggled(bool)));    
+    connect(m_autoCenteringAct, SIGNAL(toggled(bool)),
+        this, SLOT(autoCenteringToggled(bool)));    
        
        m_viewMenu = menuBar()->addMenu(tr("Main"));