aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2007-09-11 09:20:39 +0000
committerMax Horn2007-09-11 09:20:39 +0000
commit4cc9d17c345883d4a764dd182d5a76167040c888 (patch)
treedfd6619c6779946ae6f9913d3ef98c98c5f22e26 /gui
parent4a4fc235f22351331c7c5f33b83303d84622641b (diff)
downloadscummvm-rg350-4cc9d17c345883d4a764dd182d5a76167040c888.tar.gz
scummvm-rg350-4cc9d17c345883d4a764dd182d5a76167040c888.tar.bz2
scummvm-rg350-4cc9d17c345883d4a764dd182d5a76167040c888.zip
Adding various FIXME comments to bogus (non-self-explanatory) existing FIXME comments; and some other related cleanup
svn-id: r28890
Diffstat (limited to 'gui')
-rw-r--r--gui/PopUpWidget.cpp1
-rw-r--r--gui/editable.cpp2
-rw-r--r--gui/message.cpp2
3 files changed, 1 insertions, 4 deletions
diff --git a/gui/PopUpWidget.cpp b/gui/PopUpWidget.cpp
index ac91376269..9e5f1f46cf 100644
--- a/gui/PopUpWidget.cpp
+++ b/gui/PopUpWidget.cpp
@@ -402,7 +402,6 @@ void PopUpWidget::clearEntries() {
}
void PopUpWidget::setSelected(int item) {
- // FIXME
if (item != _selectedItem) {
if (item >= 0 && item < (int)_entries.size()) {
_selectedItem = item;
diff --git a/gui/editable.cpp b/gui/editable.cpp
index 1333bf0a9d..ef6bf44d0e 100644
--- a/gui/editable.cpp
+++ b/gui/editable.cpp
@@ -42,7 +42,7 @@ EditableWidget::EditableWidget(GuiObject *boss, const String &name)
void EditableWidget::init() {
_caretVisible = false;
_caretTime = 0;
- _caretPos = 0; // FIXME
+ _caretPos = 0;
_caretInverse = false;
diff --git a/gui/message.cpp b/gui/message.cpp
index 958d8e3dc8..7843225a1f 100644
--- a/gui/message.cpp
+++ b/gui/message.cpp
@@ -87,8 +87,6 @@ MessageDialog::MessageDialog(const Common::String &message, const char *defaultB
lines[i], kTextAlignCenter);
}
- // FIXME - allow for more than two buttons, and return in runModal() which one
- // was selected.
if (defaultButton && altButton) {
okButtonPos = (_w - (buttonWidth * 2)) / 2;
cancelButtonPos = ((_w - (buttonWidth * 2)) / 2) + buttonWidth + 10;