screenshot: Fix warning about unused shoot_type

Signed-off-by: Nils Philippsen <nils@tiptoe.de>
This commit is contained in:
Nils Philippsen 2024-08-25 15:31:31 +02:00 committed by Jehan
parent 7419473ad0
commit bf8ebe278a
1 changed files with 4 additions and 0 deletions

View File

@ -453,7 +453,9 @@ shoot (GdkMonitor *monitor,
GimpProcedureConfig *config, GimpProcedureConfig *config,
GError **error) GError **error)
{ {
#if defined(PLATFORM_OSX) || defined(G_OS_WIN32)
ShootType shoot_type; ShootType shoot_type;
#endif
gboolean decorate; gboolean decorate;
guint select_delay; guint select_delay;
guint screenshot_delay; guint screenshot_delay;
@ -465,8 +467,10 @@ shoot (GdkMonitor *monitor,
"include-decoration", &decorate, "include-decoration", &decorate,
"include-pointer", &show_cursor, "include-pointer", &show_cursor,
NULL); NULL);
#if defined(PLATFORM_OSX) || defined(G_OS_WIN32)
shoot_type = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config), shoot_type = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config),
"shoot-type"); "shoot-type");
#endif
#ifdef PLATFORM_OSX #ifdef PLATFORM_OSX
if (backend == SCREENSHOT_BACKEND_OSX) if (backend == SCREENSHOT_BACKEND_OSX)