Commit c0797e6073c76a019a964f78cf44fcb5293ce728

removed some unused vars in func params, fixed the include file name in the streamdialog.cpp file
  
6868 connect ( iWebView.page(), SIGNAL(loadStarted()), this, SLOT ( loadStarted()));
6969}
7070
71void FBDialog::placeControls(const QSize& aSize)
71void FBDialog::placeControls(const QSize& /*aSize*/)
7272{
7373 iWebView.setGeometry(this->rect());
7474}
130130 // could also be reject()?
131131}
132132
133void FBDialog::dismiss (bool aAnimated) {
133void FBDialog::dismiss (bool /*aAnimated*/) {
134134 dialogWillDisappear();
135135 iLoadingUrl.clear();
136136
  
127127}
128128
129129QString FBRequest::urlForMethod (const QString& aMethod) const {
130 if ( iMethod.compare("facebook.video.upload",Qt::CaseInsensitive) == 0) {
130 if ( aMethod.compare("facebook.video.upload",Qt::CaseInsensitive) == 0) {
131131 return "http://api-video.facebook.com/restserver.php";
132132 }
133133
  
1#include "FBStreamDialog.h"
1#include "fbstreamdialog.h"
22#include "fbsession.h"
33
44
  
5959}
6060
6161/* methods from QXmlDefaultHandler */
62bool FBXMLHandler::startElement( const QString & namespaceURI,
62bool FBXMLHandler::startElement( const QString & /*namespaceURI*/,
6363 const QString & localName,
64 const QString & qName,
64 const QString & /*qName*/,
6565 const QXmlAttributes & atts)
6666{
6767 flushCharacters();
8585 return true;
8686}
8787
88bool FBXMLHandler::endElement( const QString & namespaceURI,
89 const QString & localName,
90 const QString & qName )
88bool FBXMLHandler::endElement( const QString & /*namespaceURI*/,
89 const QString & /*localName*/,
90 const QString & /*qName*/ )
9191{
9292 flushCharacters();
9393
142142 return iNameStack.last();
143143}
144144
145QVariant FBXMLHandler::topObject(bool aCreate)
145QVariant FBXMLHandler::topObject(bool /*aCreate*/)
146146{
147147 QVariant item ;
148148 {