diff options
Diffstat (limited to 'examples/agent/main.cpp')
-rw-r--r-- | examples/agent/main.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/examples/agent/main.cpp b/examples/agent/main.cpp index 8e61f7066..cf2406b57 100644 --- a/examples/agent/main.cpp +++ b/examples/agent/main.cpp @@ -1,3 +1,4 @@ +// This is an example not a library /*************************************************************************** * Copyright (C) 2009 Jaroslav Reznik * * * @@ -17,14 +18,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ -#include <TQApplication> - -#define POLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE 1 - #include "pkagentexample.h" int main(int argc, char *argv[]) { - PkAgentExample example(argc, argv); - return example.exec(); + PkAgentExample example(argc, argv); + return example.exec(); } |