diff options
author | Matt Turner <mattst88@gmail.com> | 2012-02-15 14:34:23 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2012-02-15 14:34:23 -0500 |
commit | 0ed2ff260ba04b1ecc88d806309f51bc0ef3de2b (patch) | |
tree | 96c2720b6b50ac9d54e2234b4e61b840c734d3bb /src | |
parent | 977327e998347f2833632be59b47f0ec7b941188 (diff) |
Include MultiSrc.h in AllWidgets.c
AsciiText.h doesn't include MultiSrc.h when internationalization is
disabled, so dcd27a9c69a was breaking the build. Also fix a typo
introduced in the same commit Xaw -> Xaw3d.
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/AllWidgets.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/AllWidgets.c b/src/AllWidgets.c index d0ec9d0..2408a8c 100644 --- a/src/AllWidgets.c +++ b/src/AllWidgets.c @@ -47,7 +47,8 @@ in this Software without prior written authorization from the X Consortium. #include <X11/Xaw3d/Layout.h> #include <X11/Xaw3d/List.h> #include <X11/Xaw3d/MenuButton.h> -#include <X11/Xaw/MultiSink.h> +#include <X11/Xaw3d/MultiSink.h> +#include <X11/Xaw3d/MultiSrc.h> #include <X11/Xaw3d/Paned.h> #include <X11/Xaw3d/Panner.h> #include <X11/Xaw3d/Porthole.h> |