diff --git a/desktop_version/src/Textbox.cpp b/desktop_version/src/Textbox.cpp index 3b9234dc..92884360 100644 --- a/desktop_version/src/Textbox.cpp +++ b/desktop_version/src/Textbox.cpp @@ -3,12 +3,6 @@ textboxclass::textboxclass() { - firstcreate(); -} - -void textboxclass::firstcreate() -{ - //Like clear, only it creates the actual arrays, etc x = 0; y = 0; w = 0; @@ -19,20 +13,6 @@ void textboxclass::firstcreate() timer = 0; } -void textboxclass::clear() -{ - //Set all values to a default, required for creating a new entity - line.resize(1); - xp = 0; - yp = 0; - w = 0; - h = 0; - lw = 0; - tl = 0; - tm = 0; - timer = 0; -} - void textboxclass::centerx() { resize(); diff --git a/desktop_version/src/Textbox.h b/desktop_version/src/Textbox.h index 79657f23..d30cdd5e 100644 --- a/desktop_version/src/Textbox.h +++ b/desktop_version/src/Textbox.h @@ -10,10 +10,6 @@ class textboxclass public: textboxclass(); - void firstcreate(); - - void clear(); - void centerx(); void centery();