LCDTextItem has a default constructor that doesn't initialize any

From: Erik Hovland <erik@hovland.org>

of the class's members.
---

 libs/libmyth/lcddevice.h |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/libs/libmyth/lcddevice.h b/libs/libmyth/lcddevice.h
index bf98c72..ce40da4 100644
--- a/libs/libmyth/lcddevice.h
+++ b/libs/libmyth/lcddevice.h
@@ -20,19 +20,17 @@ enum CHECKED_STATE {CHECKED = 0, UNCHECKED, NOTCHECKABLE };
 class MPUBLIC LCDMenuItem
 {
   public:
-    LCDMenuItem() {}
     LCDMenuItem(bool item_selected, CHECKED_STATE item_checked,
                 QString item_name, unsigned int item_indent  = 0)
     {
         selected = item_selected;
         checked = item_checked;
         name = item_name;
+        scroll = false;
         indent = item_indent;
         scrollPosition = indent;
     }
 
-   ~LCDMenuItem() {}
-
     CHECKED_STATE isChecked() { return checked; }
     bool isSelected() { return selected; }
     QString ItemName() { return name; }
@@ -62,7 +60,6 @@ enum TEXT_ALIGNMENT {ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTERED };
 class MPUBLIC LCDTextItem
 {
   public:
-    LCDTextItem() {}
     LCDTextItem(unsigned int row, TEXT_ALIGNMENT align, QString text,
                 QString screen = "Generic", bool scroll = false,
                 QString widget = "textWidget")
@@ -75,8 +72,6 @@ class MPUBLIC LCDTextItem
         itemScrollable = scroll;
     }
 
-   ~LCDTextItem(){};
-
     unsigned int getRow() { return itemRow; }
     TEXT_ALIGNMENT getAlignment() { return itemAlignment; }
     QString getText() { return itemText; }
