Skip to content

Commit

Permalink
Fix signal connection
Browse files Browse the repository at this point in the history
  • Loading branch information
cpina committed Oct 15, 2023
1 parent 680c7fa commit a0536f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Main::Main(QWidget *) //parent
connect(ui.llistat,SIGNAL(itemDoubleClicked(QListWidgetItem *)),this,SLOT(searchListWord(QListWidgetItem*)));
connect(ui.paraula,SIGNAL(textChanged(const QString &)),this,SLOT(paraulaChanged(const QString &)));

connect(&m_festival,SIGNAL(error(QProcess::ProcessError)),this,SLOT(FestivalError(QProcess::ProcessError)));
connect(&m_festival,SIGNAL(errorOccurred(QProcess::ProcessError)),this,SLOT(FestivalError(QProcess::ProcessError)));
connect(&m_festival,SIGNAL(finished(int,QProcess::ExitStatus)),this,SLOT(FestivalFinished(int,QProcess::ExitStatus)));
connect(ui.definicio,SIGNAL(browserFailed()),this,SLOT(showBrowserError()));

Expand Down

0 comments on commit a0536f8

Please sign in to comment.