diff options
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/PixelPaint/EllipseTool.cpp | 2 | ||||
-rw-r--r-- | Applications/PixelPaint/LineTool.cpp | 2 | ||||
-rw-r--r-- | Applications/PixelPaint/RectangleTool.cpp | 2 | ||||
-rw-r--r-- | Applications/PixelPaint/SprayTool.cpp | 2 | ||||
-rw-r--r-- | Applications/SoundPlayer/SampleWidget.cpp | 2 | ||||
-rw-r--r-- | Applications/SoundPlayer/SoundPlayerWidget.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Applications/PixelPaint/EllipseTool.cpp b/Applications/PixelPaint/EllipseTool.cpp index bdad687e65..e4914f03b2 100644 --- a/Applications/PixelPaint/EllipseTool.cpp +++ b/Applications/PixelPaint/EllipseTool.cpp @@ -31,7 +31,7 @@ #include <LibGUI/Menu.h> #include <LibGUI/Painter.h> #include <LibGfx/Rect.h> -#include <LibM/math.h> +#include <math.h> namespace PixelPaint { diff --git a/Applications/PixelPaint/LineTool.cpp b/Applications/PixelPaint/LineTool.cpp index dd1133aa77..8dd2d0a4f1 100644 --- a/Applications/PixelPaint/LineTool.cpp +++ b/Applications/PixelPaint/LineTool.cpp @@ -30,7 +30,7 @@ #include <LibGUI/Action.h> #include <LibGUI/Menu.h> #include <LibGUI/Painter.h> -#include <LibM/math.h> +#include <math.h> namespace PixelPaint { diff --git a/Applications/PixelPaint/RectangleTool.cpp b/Applications/PixelPaint/RectangleTool.cpp index 84d5e3937e..4eaffd29bb 100644 --- a/Applications/PixelPaint/RectangleTool.cpp +++ b/Applications/PixelPaint/RectangleTool.cpp @@ -31,7 +31,7 @@ #include <LibGUI/Menu.h> #include <LibGUI/Painter.h> #include <LibGfx/Rect.h> -#include <LibM/math.h> +#include <math.h> namespace PixelPaint { diff --git a/Applications/PixelPaint/SprayTool.cpp b/Applications/PixelPaint/SprayTool.cpp index 0a685e36e0..85a6200f97 100644 --- a/Applications/PixelPaint/SprayTool.cpp +++ b/Applications/PixelPaint/SprayTool.cpp @@ -33,7 +33,7 @@ #include <LibGUI/Menu.h> #include <LibGUI/Painter.h> #include <LibGfx/Bitmap.h> -#include <LibM/math.h> +#include <math.h> #include <stdio.h> namespace PixelPaint { diff --git a/Applications/SoundPlayer/SampleWidget.cpp b/Applications/SoundPlayer/SampleWidget.cpp index 5decd2b8b9..b3884a175a 100644 --- a/Applications/SoundPlayer/SampleWidget.cpp +++ b/Applications/SoundPlayer/SampleWidget.cpp @@ -27,7 +27,7 @@ #include "SampleWidget.h" #include <LibAudio/Buffer.h> #include <LibGUI/Painter.h> -#include <LibM/math.h> +#include <math.h> SampleWidget::SampleWidget() { diff --git a/Applications/SoundPlayer/SoundPlayerWidget.cpp b/Applications/SoundPlayer/SoundPlayerWidget.cpp index 0b416c0833..5901283581 100644 --- a/Applications/SoundPlayer/SoundPlayerWidget.cpp +++ b/Applications/SoundPlayer/SoundPlayerWidget.cpp @@ -30,7 +30,7 @@ #include <LibGUI/Button.h> #include <LibGUI/Label.h> #include <LibGUI/MessageBox.h> -#include <LibM/math.h> +#include <math.h> SoundPlayerWidget::SoundPlayerWidget(GUI::Window& window, NonnullRefPtr<Audio::ClientConnection> connection) : m_window(window) |