From b276d6517a8ef68d252359dcc74a60653b1d302e Mon Sep 17 00:00:00 2001 From: scorpio810 Date: Tue, 6 Nov 2018 13:45:47 +0000 Subject: [PATCH] Fix about Qt SLOT, thanks letartare git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5575 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/qetmainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/qetmainwindow.cpp b/sources/qetmainwindow.cpp index 0e439f14d..68b37e7e1 100644 --- a/sources/qetmainwindow.cpp +++ b/sources/qetmainwindow.cpp @@ -125,7 +125,7 @@ void QETMainWindow::initCommonActions() { about_qt_ = new QAction(QET::Icons::QtLogo, tr("À propos de &Qt"), this); about_qt_ -> setStatusTip(tr("Affiche des informations sur la bibliothèque Qt", "status bar tip")); - connect(about_qt_, SIGNAL(triggered()), qet_app, SLOT(aboutQt())); + connect(about_qt_, SIGNAL(triggered()), qApp, SLOT(aboutQt())); } /**