diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2006-01-02 13:37:56 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2006-01-02 13:37:56 +0000 |
| commit | 0321627691afc62288cd25495b19fb510becf2d9 (patch) | |
| tree | 4a7dcb6ce143b66760091837a9e16982f8cd1834 | |
| parent | 72b136d58b93ee5a6f469cbeef54cda3fbb4b070 (diff) | |
Use "512" in place of kWindowNoTitleBarAttribute, as that constant was
only introduced in MacOS X 10.4!
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4734 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_mac.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_mac.cxx b/src/Fl_mac.cxx index 606570b69..6c3bb83d6 100644 --- a/src/Fl_mac.cxx +++ b/src/Fl_mac.cxx @@ -1735,7 +1735,7 @@ void Fl_X::make(Fl_Window* w) winclass = kHelpWindowClass; winattr = 0; } else { - winattr = kWindowNoTitleBarAttribute; + winattr = 512; // kWindowNoTitleBarAttribute; } } else if (w->modal()) { winclass = kMovableModalWindowClass; |
