aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2007-06-07 15:17:01 +0000
committerMax Horn2007-06-07 15:17:01 +0000
commita6db69102b34b3319c3815301e30ac8a282f31fc (patch)
tree963668f2e1c6ec6834fddb9512d06cda55870be9 /gui
parent0bebe25e0f3dc49eec52a0a09b676e5a537fe71b (diff)
downloadscummvm-rg350-a6db69102b34b3319c3815301e30ac8a282f31fc.tar.gz
scummvm-rg350-a6db69102b34b3319c3815301e30ac8a282f31fc.tar.bz2
scummvm-rg350-a6db69102b34b3319c3815301e30ac8a282f31fc.zip
Extended comment on TabWidget::removeTab() a bit
svn-id: r27169
Diffstat (limited to 'gui')
-rw-r--r--gui/TabWidget.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/TabWidget.h b/gui/TabWidget.h
index 7e4c1d8139..928f7916b6 100644
--- a/gui/TabWidget.h
+++ b/gui/TabWidget.h
@@ -72,6 +72,10 @@ public:
* Remove the tab with the given tab ID. Disposes all child widgets of that tab.
* TODO: This code is *unfinished*. In particular, it changes the
* tabIDs, so that they are not unique anymore! This is bad.
+ * If we need to, we could fix this by changing the tab IDs from being an index
+ * into the _tabs array to a real "unique" ID, which gets stored in the Tab struct.
+ * It won't be difficult to implement this, but since currently no code seems to make
+ * use of the feature...
*/
void removeTab(int tabID);