diff options
author | rubidium <rubidium@openttd.org> | 2011-04-30 14:24:23 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-04-30 14:24:23 +0000 |
commit | 46c242b1dc790e7e55b739dcf5e4133c4ab2e8b2 (patch) | |
tree | 5f984a3e93055cd737f8d089e33919d13db8553b /src/widgets | |
parent | 1c1e9f69419aa49bfae9fd2975957d4e0b890fb8 (diff) | |
download | openttd-46c242b1dc790e7e55b739dcf5e4133c4ab2e8b2.tar.xz |
(svn r22385) -Fix [FS#4603]: strnatcmp is in string.cpp, so it ought to be declared in string_func.h.
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/dropdown.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/widgets/dropdown.cpp b/src/widgets/dropdown.cpp index 1b5ba6a01..f2e9cc2c1 100644 --- a/src/widgets/dropdown.cpp +++ b/src/widgets/dropdown.cpp @@ -11,6 +11,7 @@ #include "../stdafx.h" #include "../window_gui.h" +#include "../string_func.h" #include "../strings_func.h" #include "../window_func.h" #include "dropdown_type.h" |