From be9c779f35378a5e17cd9da6e1a45a75149dd7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Thu, 9 Dec 2010 12:14:17 +0000 Subject: [PATCH] cppcheck: unused variables --- .../OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c index fa52c68b3ee4..4cb341ef5137 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c @@ -78,7 +78,6 @@ JNIEXPORT jlong JNICALL Java_NativeView_getNativeWindow JAWT_DrawingSurfaceInfo* dsi ; JAWT_X11DrawingSurfaceInfo* dsi_x11 ; Drawable drawable; - Display* display ; /* Get the AWT */ awt.version = JAWT_VERSION_1_3; @@ -99,7 +98,6 @@ JNIEXPORT jlong JNICALL Java_NativeView_getNativeWindow /* Get the platform-specific drawing info */ dsi_x11 = (JAWT_X11DrawingSurfaceInfo*)dsi->platformInfo; drawable = dsi_x11->drawable; - display = dsi_x11->display; /* Free the drawing surface info */ ds->FreeDrawingSurfaceInfo(dsi);