소스 검색

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);
 };