From 2566efb87282e5ee280bbe142c9bbbc50484cacb Mon Sep 17 00:00:00 2001 From: Gavin Hurlbut Date: Wed, 22 Jun 2011 00:29:39 -0700 Subject: [PATCH] Second attempt to quash the warning in mythgallery without libexif --- mythplugins/mythgallery/mythgallery/galleryutil.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mythplugins/mythgallery/mythgallery/galleryutil.cpp b/mythplugins/mythgallery/mythgallery/galleryutil.cpp index 002030ba841..c63bec5f54d 100644 --- a/mythplugins/mythgallery/mythgallery/galleryutil.cpp +++ b/mythplugins/mythgallery/mythgallery/galleryutil.cpp @@ -201,6 +201,9 @@ long GalleryUtil::GetNaturalRotation(const QString &filePathString) .arg(filePathString)); } +#else + // Shut the compiler up about the unused argument + (void)filePathString; #endif // EXIF_SUPPORT return rotateAngle; }