diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/PortMenu.cpp | 2 | ||||
-rw-r--r-- | src/gui/Style.hpp | 3 | ||||
-rw-r--r-- | src/gui/rgba.hpp | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/PortMenu.cpp b/src/gui/PortMenu.cpp index 4cff55f7..c6ec8fa1 100644 --- a/src/gui/PortMenu.cpp +++ b/src/gui/PortMenu.cpp @@ -14,7 +14,7 @@ along with Ingen. If not, see <http://www.gnu.org/licenses/>. */ -#include <math.h> +#include <cmath> #include "ingen/Interface.hpp" #include "ingen/client/GraphModel.hpp" diff --git a/src/gui/Style.hpp b/src/gui/Style.hpp index f92d884e..8e628a3d 100644 --- a/src/gui/Style.hpp +++ b/src/gui/Style.hpp @@ -17,8 +17,7 @@ #ifndef INGEN_GUI_STYLE_HPP #define INGEN_GUI_STYLE_HPP -#include <stdint.h> - +#include <cstdint> #include <string> namespace Ingen { namespace Client { class PortModel; } } diff --git a/src/gui/rgba.hpp b/src/gui/rgba.hpp index 8648aece..dae3f179 100644 --- a/src/gui/rgba.hpp +++ b/src/gui/rgba.hpp @@ -17,7 +17,7 @@ #ifndef INGEN_GUI_RGBA_HPP #define INGEN_GUI_RGBA_HPP -#include <math.h> +#include <cmath> namespace Ingen { namespace GUI { |