Hello,

This one-line patch changes a slot name, which else wasn't found.

Bruno
Index: kopeteonlinestatus.cpp
===================================================================
--- kopeteonlinestatus.cpp	(revision 627723)
+++ kopeteonlinestatus.cpp	(working copy)
@@ -1,5 +1,5 @@
 /*
-    kopeteonlinestatus.cpp - Kopete Online Status
+    Kopeteonlinestatus.cpp - Kopete Online Status
 
     Copyright (c) 2003      by Martijn Klingens <[EMAIL PROTECTED]>
     Copyright (c) 2003      by Duncan Mac-Vicar Prett <[EMAIL PROTECTED]>
Index: kopetepassword.cpp
===================================================================
--- kopetepassword.cpp	(revision 627723)
+++ kopetepassword.cpp	(working copy)
@@ -109,7 +109,7 @@
 	 */
 	virtual void processRequest() = 0;
 
-    void gotPassword(const QString&, bool) {}
+	void gotPassword(const QString&, bool) {}
 	void slotCancelPressed() {}
 
 protected:
@@ -185,7 +185,7 @@
 		passwdDialog->setPrompt( mPrompt );
 		passwdDialog->setPixmap( mImage );
 
-		connect( passwdDialog, SIGNAL( gotPassword(const QString&, bool) ), SLOT( slotGotPassword( const QString&, bool) )) ;
+		connect( passwdDialog, SIGNAL( gotPassword(const QString&, bool) ), SLOT( gotPassword( const QString&, bool) )) ;
 		connect( passwdDialog, SIGNAL( rejected() ), SLOT( slotCancelPressed() ) );
 		connect( this, SIGNAL( destroyed() ), passwdDialog, SLOT( deleteLater() ) );
 		passwdDialog->show();
Index: kopetepassword.h
===================================================================
--- kopetepassword.h	(revision 627723)
+++ kopetepassword.h	(working copy)
@@ -190,7 +190,7 @@
 	void requestFinished( const QString &password );
 public slots:
 	virtual void walletReceived( KWallet::Wallet *wallet ) = 0;
-    virtual void gotPassword(const QString&, bool) =0;
+	virtual void gotPassword(const QString&, bool) =0;
 	virtual void slotCancelPressed() =0;
 
 };
_______________________________________________
kopete-devel mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/kopete-devel

Reply via email to