diff options
| author | Neil <nyamatongwe@gmail.com> | 2021-10-12 12:00:02 +1100 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2021-10-12 12:00:02 +1100 | 
| commit | 8c07d7f5b68ccb39469dcde13d6d401c3ebb35b4 (patch) | |
| tree | eccf4f22b902c5058f684b7504b1dee549594cfd | |
| parent | 946850cad5a3d880554352f55bd8ea7397b6e7bd (diff) | |
| download | scintilla-mirror-8c07d7f5b68ccb39469dcde13d6d401c3ebb35b4.tar.gz | |
Feature [feature-requests:#1416] Drop static in unnamed namespace.
| -rw-r--r-- | win32/PlatWin.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 4e4a46bc8..aaa6d57d6 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -2676,7 +2676,7 @@ void Window::SetPosition(PRectangle rc) {  namespace { -static RECT RectFromMonitor(HMONITOR hMonitor) noexcept { +RECT RectFromMonitor(HMONITOR hMonitor) noexcept {  	MONITORINFO mi = {};  	mi.cbSize = sizeof(mi);  	if (GetMonitorInfo(hMonitor, &mi)) { | 
