浏览代码

Fixed KAuth bug

Malte Veerman 6 年之前
父节点
当前提交
73d47b7553
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      helper/src/helper.h

+ 3 - 1
helper/src/helper.h

@@ -20,11 +20,13 @@
 #include <KAuth/KAuthActionReply>
 
 
+using namespace KAuth;
+
 class Helper : public QObject
 {
     Q_OBJECT
 
     public Q_SLOTS:
 
-        KAuth::ActionReply action(const QVariantMap &args);
+        ActionReply action(const QVariantMap &args);
 };