QtUI code cleanup / comment improvements
[novacoin.git] / src / qt / bitcoinamountfield.cpp
index e25cefa..ea38cc8 100644 (file)
@@ -9,7 +9,6 @@
 #include <QHBoxLayout>
 #include <QKeyEvent>
 #include <QComboBox>
-#include <QDebug>
 
 BitcoinAmountField::BitcoinAmountField(QWidget *parent):
         QWidget(parent), amount(0), decimals(0), currentUnit(-1)
@@ -45,7 +44,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent):
     connect(decimals, SIGNAL(textChanged(QString)), this, SIGNAL(textChanged()));
     connect(unit, SIGNAL(currentIndexChanged(int)), this, SLOT(unitChanged(int)));
 
-    // TODO: set default based on configuration
+    // Set default based on configuration
     unitChanged(unit->currentIndex());
 }
 
@@ -68,7 +67,6 @@ void BitcoinAmountField::clear()
 {
     amount->clear();
     decimals->clear();
-    // TODO: set default based on configuration
     unit->setCurrentIndex(0);
 }