diff options
| author | Matthias Melcher <git@matthiasm.com> | 2019-02-02 17:47:55 +0100 |
|---|---|---|
| committer | Matthias Melcher <git@matthiasm.com> | 2019-02-02 17:47:55 +0100 |
| commit | 452a410a3ea02f58930c4b3cc5a04bbb6b3e7070 (patch) | |
| tree | d243cf51c8b20541b46ba051d646c91b5aad1825 /src/fl_file_dir.cxx | |
| parent | 76668c7cc11c80f337bd7d04d6adead49c8a636f (diff) | |
STR #2714: remove new shadow lint for MacOS
Diffstat (limited to 'src/fl_file_dir.cxx')
| -rw-r--r-- | src/fl_file_dir.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_file_dir.cxx b/src/fl_file_dir.cxx index 26247e4fc..ab16c55d7 100644 --- a/src/fl_file_dir.cxx +++ b/src/fl_file_dir.cxx @@ -34,14 +34,14 @@ static void callback(Fl_File_Chooser *, void*) { } // Pop up a file chooser dialog window and wait until it is closed... -static void popup(Fl_File_Chooser *fc) { - fc->show(); +static void popup(Fl_File_Chooser *filechooser) { + filechooser->show(); // deactivate Fl::grab(), because it is incompatible with modal windows Fl_Window* g = Fl::grab(); if (g) Fl::grab(0); - while (fc->shown()) + while (filechooser->shown()) Fl::wait(); if (g) // regrab the previous popup menu, if there was one |
