Commit c0797e6073c76a019a964f78cf44fcb5293ce728
- Diff rendering mode:
- inline
- side by side
src/fbdialog.cpp
(2 / 2)
|   | |||
| 68 | 68 | connect ( iWebView.page(), SIGNAL(loadStarted()), this, SLOT ( loadStarted())); | |
| 69 | 69 | } | |
| 70 | 70 | ||
| 71 | void FBDialog::placeControls(const QSize& aSize) | ||
| 71 | void FBDialog::placeControls(const QSize& /*aSize*/) | ||
| 72 | 72 | { | |
| 73 | 73 | iWebView.setGeometry(this->rect()); | |
| 74 | 74 | } | |
| … | … | ||
| 130 | 130 | // could also be reject()? | |
| 131 | 131 | } | |
| 132 | 132 | ||
| 133 | void FBDialog::dismiss (bool aAnimated) { | ||
| 133 | void FBDialog::dismiss (bool /*aAnimated*/) { | ||
| 134 | 134 | dialogWillDisappear(); | |
| 135 | 135 | iLoadingUrl.clear(); | |
| 136 | 136 |
src/fbrequest.cpp
(1 / 1)
|   | |||
| 127 | 127 | } | |
| 128 | 128 | ||
| 129 | 129 | QString 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) { | ||
| 131 | 131 | return "http://api-video.facebook.com/restserver.php"; | |
| 132 | 132 | } | |
| 133 | 133 |
src/fbstreamdialog.cpp
(1 / 1)
|   | |||
| 1 | #include "FBStreamDialog.h" | ||
| 1 | #include "fbstreamdialog.h" | ||
| 2 | 2 | #include "fbsession.h" | |
| 3 | 3 | ||
| 4 | 4 |
src/fbxmlhandler.cpp
(6 / 6)
|   | |||
| 59 | 59 | } | |
| 60 | 60 | ||
| 61 | 61 | /* methods from QXmlDefaultHandler */ | |
| 62 | bool FBXMLHandler::startElement( const QString & namespaceURI, | ||
| 62 | bool FBXMLHandler::startElement( const QString & /*namespaceURI*/, | ||
| 63 | 63 | const QString & localName, | |
| 64 | const QString & qName, | ||
| 64 | const QString & /*qName*/, | ||
| 65 | 65 | const QXmlAttributes & atts) | |
| 66 | 66 | { | |
| 67 | 67 | flushCharacters(); | |
| … | … | ||
| 85 | 85 | return true; | |
| 86 | 86 | } | |
| 87 | 87 | ||
| 88 | bool FBXMLHandler::endElement( const QString & namespaceURI, | ||
| 89 | const QString & localName, | ||
| 90 | const QString & qName ) | ||
| 88 | bool FBXMLHandler::endElement( const QString & /*namespaceURI*/, | ||
| 89 | const QString & /*localName*/, | ||
| 90 | const QString & /*qName*/ ) | ||
| 91 | 91 | { | |
| 92 | 92 | flushCharacters(); | |
| 93 | 93 | ||
| … | … | ||
| 142 | 142 | return iNameStack.last(); | |
| 143 | 143 | } | |
| 144 | 144 | ||
| 145 | QVariant FBXMLHandler::topObject(bool aCreate) | ||
| 145 | QVariant FBXMLHandler::topObject(bool /*aCreate*/) | ||
| 146 | 146 | { | |
| 147 | 147 | QVariant item ; | |
| 148 | 148 | { |

