summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2008-11-16 19:44:58 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2008-11-16 19:44:58 +0000
commit9c7af9b2cf586dd9aaf0b11793514f458d09afed (patch)
treece45f630a3dcde25e20bcb3ef05107acee0467a4
parentb04d48d2fa96151faa0a494860194abdbfbfb2bb (diff)
Added missing dependency (COMCTRL32.LIB) to documentation/src/basics.dox
(reported in fltk.general). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6528 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--CHANGES2
-rw-r--r--documentation/src/basics.dox3
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index d0935355f..fe6b19599 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
CHANGES IN FLTK 1.3.0
+ - Fixed documentation (added missing COMCTRL32.LIB
+ dependency)
- Fixed menu positon close to screen border (STR #2057)
- Improved stability of fl_read_image (STR #2021)
- Fixed adding an idle handler during
diff --git a/documentation/src/basics.dox b/documentation/src/basics.dox
index fc177c4ef..bbe94756c 100644
--- a/documentation/src/basics.dox
+++ b/documentation/src/basics.dox
@@ -295,7 +295,8 @@ In Visual C++ you will need to tell the compiler where to
find the FLTK header files. This can be done by selecting
"Settings" from the "Project" menu and then changing the
"Preprocessor" settings under the "C/C++" tab. You will also
-need to add the FLTK and WinSock2 (WS2_32.LIB) libraries to
+need to add the FLTK (FLTK.LIB or FLTKD.LIB), the Windows Common
+Controls (COMCTRL32.LIB), and WinSock2 (WS2_32.LIB) libraries to
the "Link" settings.
You can build your Microsoft Windows applications as Console or