Skip to content
Snippets Groups Projects
Commit d5e50b9f authored by Joakim Hunskaar's avatar Joakim Hunskaar
Browse files

remove extra semicolon and rearranging includes

parent f87a6ecd
No related branches found
No related tags found
No related merge requests found
#pragma once
#include <string>
#include <Point.h>
#include "Point.h"
#include <filesystem>
#include "SDL_render.h"
......
......@@ -2,8 +2,8 @@
#include "Widget.h"
#include "Point.h"
#include <string>
#include "Color.h"
#include <string>
namespace TDT4102 {
class Button : public TDT4102::Widget {
......
......@@ -2,8 +2,8 @@
#include "Widget.h"
#include "Point.h"
#include <string>
#include "Color.h"
#include <string>
namespace TDT4102 {
class CheckBox : public TDT4102::Widget {
......
......@@ -2,8 +2,8 @@
#include "Widget.h"
#include "Point.h"
#include <string>
#include "Color.h"
#include <string>
namespace TDT4102 {
class RadioButton : public TDT4102::Widget {
......
......@@ -19,7 +19,7 @@ TDT4102::TextBox::TextBox(TDT4102::Point location, unsigned int width, unsigned
}
std::string TDT4102::TextBox::getText() const {
return std::string(contents.data());;
return std::string(contents.data());
}
void TDT4102::TextBox::setText(std::string updatedText) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment