Skip to content

Commit

Permalink
rofi-app: remove double attached event
Browse files Browse the repository at this point in the history
It is already autoconnected by the code generated by Qt’s uic (QMetaObject::connectSlotsByName).
  • Loading branch information
jtojnar committed Sep 13, 2021
1 parent 96b3896 commit a03f8db
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tools/visualizer/rofiapp_mainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ Rofiapp_MainWindow::Rofiapp_MainWindow(QWidget *parent) :
connect(ui->actionLoadConf, SIGNAL(triggered()), this, SLOT(loadConf()));
connect(ui->actionSaveConf, SIGNAL(triggered()), this, SLOT(saveConf()));
connect(ui->actionResetCamera, SIGNAL(triggered()), this, SLOT(resetCamera()));
connect(ui->configTextWindow, SIGNAL(textChanged()),this,SLOT(on_configTextWindow_textChanged()));
connect(ui->angleGammaDial, SIGNAL(valueChanged(int)), this, SLOT(angleGammaDial_changed(int)));
connect(ui->angleGammaDial, SIGNAL(sliderReleased()), this, SLOT(angleDial_released()));
connect(ui->angleAlphaDial, SIGNAL(valueChanged(int)), this, SLOT(angleAlphaBetaDial_changed(int)));
Expand Down

0 comments on commit a03f8db

Please sign in to comment.