diff options
author | Pierre Ossman <ossman@cendio.se> | 2021-12-30 10:20:13 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2021-12-30 10:23:49 +0100 |
commit | b6d6db9b7c49898a663e9a9bc309ba10275a65f4 (patch) | |
tree | 3a0dabeb9246269e4d87e0daa47e6729d6b5fc81 /win/rfb_win32/ListViewControl.cxx | |
parent | 425d8302b44137234e83d62edb70754d114b5cba (diff) | |
download | tigervnc-b6d6db9b7c49898a663e9a9bc309ba10275a65f4.tar.gz tigervnc-b6d6db9b7c49898a663e9a9bc309ba10275a65f4.zip |
Be consistent in including config.h
The generally recommended way is to include it from source files, not
headers. We had a mix of both. Let's try to be consistent and follow the
recommended way.
Diffstat (limited to 'win/rfb_win32/ListViewControl.cxx')
-rw-r--r-- | win/rfb_win32/ListViewControl.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/rfb_win32/ListViewControl.cxx b/win/rfb_win32/ListViewControl.cxx index f7733f74..7c376582 100644 --- a/win/rfb_win32/ListViewControl.cxx +++ b/win/rfb_win32/ListViewControl.cxx @@ -1,6 +1,9 @@ // ListViewControl.cxx: implementation of the ListViewControl class. // ////////////////////////////////////////////////////////////////////// +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <tchar.h> #include "ListViewControl.h" #include "commctrl.h" |