--- a/example/AuthApp/src/baseDialog.cpp Thu Sep 23 17:43:31 2010 +0530
+++ b/example/AuthApp/src/baseDialog.cpp Mon Oct 11 21:59:54 2010 +0530
@@ -175,18 +175,24 @@
}
void FBDialog::slotAuthenticationRequired( QNetworkReply* reply, QAuthenticator* authenticator )
{
+ Q_UNUSED(reply)
+ Q_UNUSED(authenticator)
QMessageBox msgbox;
QString msg ("Error!Authentication Required");
msgbox.setText(msg);
}
void FBDialog::slotsslErrors( QNetworkReply* reply, const QList<QSslError>& errors )
{
+ Q_UNUSED(errors)
+ Q_UNUSED(reply)
QMessageBox msgbox;
QString msg ("Error!SSL Error");
msgbox.setText(msg);
}
void FBDialog::slotproxyAuthenticationRequired( const QNetworkProxy& proxy, QAuthenticator* authenticator )
{
+ Q_UNUSED(proxy)
+ Q_UNUSED(authenticator)
QMessageBox msgbox;
QString msg ("Error!Proxy Authenticatio Required");
msgbox.setText(msg);
@@ -313,11 +319,11 @@
}
void FBDialog::GetSessionKey(const QUrl& aUrl)
{
-
+ Q_UNUSED(aUrl)
}
void FBDialog::FetchKeyFromUrl(const QUrl& aUrl)
{
-
+ Q_UNUSED(aUrl)
}
void FBDialog::loadFinished ( bool ok )
{