[EGIT] [misc/polkit-efl] master 01/01: Fix resend signals cb

2014-06-09 Thread Kai Huuhko
kuuko pushed a commit to branch master.

http://git.enlightenment.org/misc/polkit-efl.git/commit/?id=2b5332714d4ad18e317484b2cf3e82998ddbeeb8

commit 2b5332714d4ad18e317484b2cf3e82998ddbeeb8
Author: Kai Huuhko kai.huu...@gmail.com
Date:   Tue Jun 10 00:07:38 2014 +0300

Fix resend signals cb
---
 polkit-efl-authentication-agent-1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/polkit-efl-authentication-agent-1 
b/polkit-efl-authentication-agent-1
index 4f6db54..6ef894b 100755
--- a/polkit-efl-authentication-agent-1
+++ b/polkit-efl-authentication-agent-1
@@ -633,7 +633,7 @@ class AuthenticationDialog(Window):
 )
 # TODO: Display a desktop notification here?
 
-def resend_signals(self):
+def resend_signals(self, *args):
 if self.hiding:
 self.layout.signal_emit(polkit,hide)
 else:

-- 




[EGIT] [misc/polkit-efl] master 01/01: Fix resend signals cb, part deux

2014-06-09 Thread Kai Huuhko
kuuko pushed a commit to branch master.

http://git.enlightenment.org/misc/polkit-efl.git/commit/?id=5a9ba3742f99a73afc1f54c03cac85770a2e5fbc

commit 5a9ba3742f99a73afc1f54c03cac85770a2e5fbc
Author: Kai Huuhko kai.huu...@gmail.com
Date:   Tue Jun 10 00:16:32 2014 +0300

Fix resend signals cb, part deux
---
 polkit-efl-authentication-agent-1 | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/polkit-efl-authentication-agent-1 
b/polkit-efl-authentication-agent-1
index 6ef894b..03ebd27 100755
--- a/polkit-efl-authentication-agent-1
+++ b/polkit-efl-authentication-agent-1
@@ -635,13 +635,13 @@ class AuthenticationDialog(Window):
 
 def resend_signals(self, *args):
 if self.hiding:
-self.layout.signal_emit(polkit,hide)
+self.layout.signal_emit(polkit,hide, polkit)
 else:
-self.layout.signal_emit(polkit,visible)
+self.layout.signal_emit(polkit,visible, polkit)
 if self.pw_visible:
-self.layout.signal_emit(polkit,password,hidden)
+self.layout.signal_emit(polkit,password,hidden, polkit)
 else:
-self.layout.signal_emit(polkit,password,visible)
+self.layout.signal_emit(polkit,password,visible, polkit)
 
 
 class PasswordEntry(Entry):

--