You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by tr...@apache.org on 2012/05/04 16:50:36 UTC

qt commit: Fix for compile warnings when building for non-Harmattan and non-Symbian (e.g. desktop simulator).

Updated Branches:
  refs/heads/master 1a1c3091e -> 2537e4545


Fix for compile warnings when building for non-Harmattan and non-Symbian (e.g. desktop simulator).


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/commit/2537e454
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/tree/2537e454
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/diff/2537e454

Branch: refs/heads/master
Commit: 2537e4545db8be4cc20ca190434205e101a18f7a
Parents: 1a1c309
Author: Jeff Tranter <jt...@ics.com>
Authored: Fri May 4 10:50:29 2012 -0400
Committer: Jeff Tranter <jt...@ics.com>
Committed: Fri May 4 10:50:29 2012 -0400

----------------------------------------------------------------------
 src/plugins/camera.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/2537e454/src/plugins/camera.cpp
----------------------------------------------------------------------
diff --git a/src/plugins/camera.cpp b/src/plugins/camera.cpp
index c567471..df9ea61 100644
--- a/src/plugins/camera.cpp
+++ b/src/plugins/camera.cpp
@@ -151,7 +151,7 @@ void Camera::startCamera()
 QString Camera::newImageFile(int width, int height)
 {
     qDebug() << Q_FUNC_INFO;
-#ifdef MEEGO_EDITION_HARMATTAN
+#ifndef Q_OS_SYMBIAN
     Q_UNUSED(width);
     Q_UNUSED(height);
 #endif