[qet] qet/qet: [5575] Fix about Qt SLOT, thanks letartare |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 5575
Author: scorpio810
Date: 2018-11-06 14:45:47 +0100 (Tue, 06 Nov 2018)
Log Message:
-----------
Fix about Qt SLOT, thanks letartare
Modified Paths:
--------------
trunk/sources/qetmainwindow.cpp
Modified: trunk/sources/qetmainwindow.cpp
===================================================================
--- trunk/sources/qetmainwindow.cpp 2018-10-29 15:14:38 UTC (rev 5574)
+++ trunk/sources/qetmainwindow.cpp 2018-11-06 13:45:47 UTC (rev 5575)
@@ -125,7 +125,7 @@
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()));
}
/**