diff options
| -rw-r--r-- | client.cxx | 2 | ||||
| -rw-r--r-- | qicclient/client.hxx | 2 | 
2 files changed, 2 insertions, 2 deletions
| @@ -40,7 +40,7 @@ namespace ICClient {  				, successPage.toLatin1().constData()  				, nextPage.toLatin1().constData()  				, failPage.toLatin1().constData()); -		emit loggedIn(username); +		emit loggedIn(user);  	}  	void Client::logOut() diff --git a/qicclient/client.hxx b/qicclient/client.hxx index 0fb01f8..ef8a5bf 100644 --- a/qicclient/client.hxx +++ b/qicclient/client.hxx @@ -60,7 +60,7 @@ namespace ICClient {  		signals:  			void gotAllProducts(icclient_catalog* catalog);  			void ordered(icclient_ord_order* order); -			void loggedIn(QString const& userName); +			void loggedIn(icclient_user* user);  			void loggedOut();  	}; |