diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-24 13:02:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-24 13:02:39 +0300 |
commit | d4e289e6bed3cff65e106fc6ed5aabfedb4e7da8 (patch) | |
tree | 8d9e3318ff7c22c72d7ddcb47991e4f6ca02d7a0 | |
parent | 190af55dd64b42ff21117118ac9d6643ad3cce3c (diff) | |
download | plus-d4e289e6bed3cff65e106fc6ed5aabfedb4e7da8.tar.gz plus-d4e289e6bed3cff65e106fc6ed5aabfedb4e7da8.tar.bz2 plus-d4e289e6bed3cff65e106fc6ed5aabfedb4e7da8.tar.xz plus-d4e289e6bed3cff65e106fc6ed5aabfedb4e7da8.zip |
Fix compilation with some options.
-rw-r--r-- | src/gui/windows/setupwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/setupwindow.cpp b/src/gui/windows/setupwindow.cpp index 07a4b776a..dbe7e9108 100644 --- a/src/gui/windows/setupwindow.cpp +++ b/src/gui/windows/setupwindow.cpp @@ -245,7 +245,7 @@ void SetupWindow::registerWindowForReset(Window *const window) void SetupWindow::unregisterWindowForReset(Window *const window) { - FOR_EACH (std::list<Window*>::const_iterator, it, mWindowsToReset) + FOR_EACH (std::list<Window*>::iterator, it, mWindowsToReset) { if (*it == window) { |