diff options
author | David Robillard <d@drobilla.net> | 2022-11-15 15:39:21 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-11-15 15:39:21 -0500 |
commit | b21c1ef7ab549819a9e191afae3d2e6ae3607260 (patch) | |
tree | 4a069417813677d4d0b96891ce680bee1bba9ca0 | |
parent | c5f453bfb3de0dd62676ebe8e06e73e24ab7d066 (diff) | |
download | patchage-b21c1ef7ab549819a9e191afae3d2e6ae3607260.tar.gz patchage-b21c1ef7ab549819a9e191afae3d2e6ae3607260.tar.bz2 patchage-b21c1ef7ab549819a9e191afae3d2e6ae3607260.zip |
Add missing includes
-rw-r--r-- | src/CanvasModule.cpp | 1 | ||||
-rw-r--r-- | src/main.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/CanvasModule.cpp b/src/CanvasModule.cpp index e93cefe..95ab169 100644 --- a/src/CanvasModule.cpp +++ b/src/CanvasModule.cpp @@ -10,6 +10,7 @@ #include "ClientID.hpp" #include "PortID.hpp" #include "SignalDirection.hpp" +#include "i18n.hpp" #include "warnings.hpp" PATCHAGE_DISABLE_GANV_WARNINGS diff --git a/src/main.cpp b/src/main.cpp index d76413f..568ebca 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -23,6 +23,7 @@ #if USE_GETTEXT # include <libintl.h> +# include <locale.h> #endif #include <cstring> |