diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-11-29 17:11:50 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-11-29 17:11:50 +0900 |
| commit | db12b1fbfd3c5f443459d94ec01609eadf9a3970 (patch) | |
| tree | 2309c2dad5cc5a7a6999a28c0541b591f41e357d /sip | |
| parent | 3508bf8ac24ecf34c0cebfd2262f696ca5e99ee8 (diff) | |
| download | pytde-db12b1fb.tar.gz pytde-db12b1fb.zip | |
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'sip')
| -rw-r--r-- | sip/tdeabc/ldapconfigwidget.sip | 18 | ||||
| -rw-r--r-- | sip/tdeui/kpassdlg.sip | 10 |
2 files changed, 14 insertions, 14 deletions
diff --git a/sip/tdeabc/ldapconfigwidget.sip b/sip/tdeabc/ldapconfigwidget.sip index 709421f..8d5e9a0 100644 --- a/sip/tdeabc/ldapconfigwidget.sip +++ b/sip/tdeabc/ldapconfigwidget.sip @@ -58,25 +58,25 @@ public: LdapConfigWidget (TQWidget* = 0, const char* = 0, WFlags = 0); LdapConfigWidget (int, TQWidget* = 0, const char* = 0, WFlags = 0); void setUser (const TQString&); - TQString user () const; + TQString user () const; void setPassword (const TQString&); - TQString password () const; + TQString password () const; void setBindDN (const TQString&); - TQString bindDN () const; + TQString bindDN () const; void setRealm (const TQString&); - TQString realm () const; + TQString realm () const; void setHost (const TQString&); - TQString host () const; + TQString host () const; void setPort (int); int port () const; void setVer (int); int ver () const; void setDn (const TQString&); - TQString dn () const; + TQString dn () const; void setFilter (const TQString&); - TQString filter () const; + TQString filter () const; void setMech (const TQString&); - TQString mech () const; + TQString mech () const; void setSecNO (bool = 1); bool isSecNO () const; void setSecTLS (bool = 1); @@ -95,7 +95,7 @@ public: int timeLimit () const; int flags () const; void setFlags (int); - TDEABC::LDAPUrl url () const; + TDEABC::LDAPUrl url () const; }; // class LdapConfigWidget diff --git a/sip/tdeui/kpassdlg.sip b/sip/tdeui/kpassdlg.sip index d23451a..7876f0b 100644 --- a/sip/tdeui/kpassdlg.sip +++ b/sip/tdeui/kpassdlg.sip @@ -48,7 +48,7 @@ public: %End KPasswordEdit (TQWidget* /TransferThis/, const char*, int); - const char* password (); + TQString password (); void erase (); //ig const int PassLen; @@ -112,15 +112,15 @@ public: int passwordStrengthWarningLevel () const; %End - const char* password () const; + TQString password () const; %If ( KDE_3_3_0 - ) void clearPassword (); %End bool keep () const; - static int getPassword (TQCString&, TQString, int* = 0); - static int getNewPassword (TQCString&, TQString); + static int getPassword (TQString&, TQString, int* = 0); + static int getNewPassword (TQString&, TQString); static void disableCoreDumps (); protected slots: @@ -129,7 +129,7 @@ protected slots: void slotKeep (bool); protected: - virtual bool checkPassword (const char*); + virtual bool checkPassword (const TQString&); protected: //igx virtual void virtual_hook (int, void*); |
