Kaydet (Commit) 0fb6957f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-exception-parameter

Change-Id: I58537f2fa2c0c403f441319b574b6f7794f38152
üst d4ea861f
...@@ -67,7 +67,7 @@ image_get_image_description( AtkImage *image ) ...@@ -67,7 +67,7 @@ image_get_image_description( AtkImage *image )
if( pImage ) if( pImage )
return getAsConst( pImage->getAccessibleImageDescription() ); return getAsConst( pImage->getAccessibleImageDescription() );
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleImageDescription()" ); g_warning( "Exception in getAccessibleImageDescription()" );
} }
...@@ -102,7 +102,7 @@ image_get_image_size( AtkImage *image, ...@@ -102,7 +102,7 @@ image_get_image_size( AtkImage *image,
*height = pImage->getAccessibleImageHeight(); *height = pImage->getAccessibleImageHeight();
} }
} }
catch(const uno::Exception& e) { catch(const uno::Exception&) {
g_warning( "Exception in getAccessibleImageHeight() or Width" ); g_warning( "Exception in getAccessibleImageHeight() or Width" );
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment