Fix about Qt SLOT, thanks letartare

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5575 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2018-11-06 13:45:47 +00:00
parent ae026f8a4f
commit b276d6517a

View File

@@ -125,7 +125,7 @@ void QETMainWindow::initCommonActions() {
about_qt_ = new QAction(QET::Icons::QtLogo, tr("À propos de &Qt"), this); 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")); 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()));
} }
/** /**