You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2016/05/19 09:54:50 UTC

[7/8] cordova-ubuntu git commit: fix build issue with function signature missing the cordova variable name; also avoid a warning

fix build issue with function signature missing the cordova variable name; also avoid a warning

(cherry picked from commit d6f921f7fa178388cf4cb353f32d38b50bd5959d)


Project: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/commit/83c78efb
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/tree/83c78efb
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/diff/83c78efb

Branch: refs/heads/4.3.x
Commit: 83c78efb5dc2cbb10a4832c0b368b490c9596bfe
Parents: 912db6a
Author: David Barth <da...@canonical.com>
Authored: Tue May 17 19:26:23 2016 +0200
Committer: David Barth <da...@canonical.com>
Committed: Thu May 19 11:44:49 2016 +0200

----------------------------------------------------------------------
 src/coreplugins.cpp | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/83c78efb/src/coreplugins.cpp
----------------------------------------------------------------------
diff --git a/src/coreplugins.cpp b/src/coreplugins.cpp
index fc1a115..ebae0f6 100644
--- a/src/coreplugins.cpp
+++ b/src/coreplugins.cpp
@@ -27,6 +27,7 @@ INSERT_HEADER_HERE
 extern "C" {
 
 Q_DECL_EXPORT QList<QSharedPointer<CPlugin>> cordovaGetPluginInstances(Cordova *cordova) {
+    Q_UNUSED(cordova);
     QList<QSharedPointer<CPlugin>> res;
 
     INSERT_PLUGIN_HERE


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org