From 598096e5083e182eb06d9955991606d59815573a Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser <26235500+Albrecht-S@users.noreply.github.com> Date: Sat, 18 Jul 2026 14:15:07 +0200 Subject: [PATCH] Remove unnecessary #pragma comment(lib, "advapi32.lib") This pragma would only be used on VS builds and is not necessary because advapi32.lib is linked by all Windows systems anyway. Note: if it wouldn't, then our CMake files had to be fixed! --- fluid/app/shell_command.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fluid/app/shell_command.cxx b/fluid/app/shell_command.cxx index 16f5553b1..5f9fc755a 100644 --- a/fluid/app/shell_command.cxx +++ b/fluid/app/shell_command.cxx @@ -1,7 +1,7 @@ // -// Shell Command database coe for the Fast Light Tool Kit (FLTK). +// Shell Command database code for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2025 by Bill Spitzak and others. +// Copyright 1998-2026 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -115,7 +115,6 @@ #if defined(_WIN32) && !defined(__CYGWIN__) # include // for UNLEN -# pragma comment(lib, "advapi32.lib") #else # include #endif