Compare commits

..

4 Commits

Author SHA1 Message Date
Michele Calgaro 446ba00728
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b2e6bdba6c)
1 year ago
Michele Calgaro 0b5b2bf996
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7c53a87adc)
2 years ago
Slávek Banko b5e521d070
Raise the minimum required version of CMake to 3.5.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 7e4828f14a)
2 years ago
Michele Calgaro 0821a5d876
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5b62278a4b)
2 years ago

@ -88,7 +88,7 @@ PkExample::PkExample() : TQMainWindow(nullptr, "Polkit tqt example application",
grid->addWidget(deletePB, 5, 1);
deleteL_2 = new TQLabel(privateLayoutWidget, "deleteL_2");
setCB = new TQComboBox(false, privateLayoutWidget, "setCB");
setCB = new TQComboBox(FALSE, privateLayoutWidget, "setCB");
grid->addMultiCellWidget(deleteL_2, 6, 7, 0, 0);
grid->addWidget(setCB, 6, 1);

@ -216,7 +216,7 @@ bool Action::activate()
if (d->noEnabled)
{
/* If PolicyKit says no... and we got here.. it means
* that the user set the property "no-enabled" to true..
* that the user set the property "no-enabled" to TRUE..
* Hence, they probably have a good reason for doing
* this so do let the 'activate' signal propagate..
*/

@ -22,8 +22,6 @@
#ifndef POLKIT_TQT_EXPORT_H
#define POLKIT_TQT_EXPORT_H
#include <tqglobal.h>
#define POLKIT_TQT_EXPORT TQ_EXPORT
#endif

Loading…
Cancel
Save