summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLauri Kasanen <cand@gmx.com>2014-08-21 08:14:19 +0000
committerLauri Kasanen <cand@gmx.com>2014-08-21 08:14:19 +0000
commitf44d3fe01c8646586438e0af8826f1469bb96cdc (patch)
treed636b959d72fe76687a52895144b4c9e275cd726
parent82f157481d3218e2a17ff2eddb1ba246944b3862 (diff)
Fix two typos in comments (test commit)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10228 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/screen_xywh.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen_xywh.cxx b/src/screen_xywh.cxx
index 248369542..f8626fc3f 100644
--- a/src/screen_xywh.cxx
+++ b/src/screen_xywh.cxx
@@ -58,7 +58,7 @@ static BOOL CALLBACK screen_cb(HMONITOR mon, HDC, LPRECT r, LPARAM) {
mi.cbSize = sizeof(mi);
// GetMonitorInfo(mon, &mi);
-// (but we use our self-aquired function pointer instead)
+// (but we use our self-acquired function pointer instead)
if (fl_gmi(mon, &mi)) {
screens[num_screens] = mi.rcMonitor;
// If we also want to record the work area, we would also store mi.rcWork at this point
@@ -97,7 +97,7 @@ static void screen_init() {
if (fl_gmi) {
// We have GetMonitorInfoA, enumerate all the screens...
// EnumDisplayMonitors(0,0,screen_cb,0);
-// (but we use our self-aquired function pointer instead)
+// (but we use our self-acquired function pointer instead)
// NOTE: num_screens is incremented in screen_cb so we must first reset it here...
num_screens = 0;
fl_edm(0, 0, screen_cb, 0);