--- qsampler/trunk/src/qsamplerOptions.cpp 2021/01/07 13:52:46 3848 +++ qsampler/trunk/src/qsamplerOptions.cpp 2021/01/07 16:18:02 3849 @@ -1,7 +1,7 @@ // qsamplerOptions.cpp // /**************************************************************************** - Copyright (C) 2004-2020, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2004-2021, rncbc aka Rui Nuno Capela. All rights reserved. Copyright (C) 2007,2008,2015 Christian Schoenebeck This program is free software; you can redistribute it and/or @@ -36,7 +36,10 @@ #include #ifdef CONFIG_LIBGIG +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-parameter" #include +#pragma GCC diagnostic pop #endif @@ -360,9 +363,6 @@ out << "-static"; #endif out << '\n'; - out << QString("%1: %2\n") - .arg(QSAMPLER_TITLE) - .arg(CONFIG_BUILD_VERSION); #ifdef CONFIG_LIBGIG out << QString("%1: %2\n") .arg(gig::libraryName().c_str()) @@ -371,6 +371,9 @@ out << QString("%1: %2\n") .arg(::lscp_client_package()) .arg(::lscp_client_version()); + out << QString("%1: %2\n") + .arg(QSAMPLER_TITLE) + .arg(CONFIG_BUILD_VERSION); return false; } else {