aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2011-06-03 13:43:10 +0200
committerMax Horn2011-06-03 16:16:38 +0200
commitb25fa194b32f4a9862f52c1b3b90aeabd43de544 (patch)
tree1b43963dfb27ea8de8883b0ad8c48f012fc06ef3
parentd0f721b728772ac6377321723996f1b1d9f774b6 (diff)
downloadscummvm-rg350-b25fa194b32f4a9862f52c1b3b90aeabd43de544.tar.gz
scummvm-rg350-b25fa194b32f4a9862f52c1b3b90aeabd43de544.tar.bz2
scummvm-rg350-b25fa194b32f4a9862f52c1b3b90aeabd43de544.zip
GUI: Fix some comments
-rw-r--r--gui/console.h4
-rw-r--r--gui/debugger.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/gui/console.h b/gui/console.h
index 442047ef78..50a00a1ad1 100644
--- a/gui/console.h
+++ b/gui/console.h
@@ -31,7 +31,7 @@ class ScrollBarWidget;
/*
FIXME #1: The console dialog code has some fundamental problems.
First of, note the conflict between the (constant) value kCharsPerLine, and the
- (variable) value _pageWidth. Look a bit at the code get familiar with them,
+ (variable) value _pageWidth. Look a bit at the code to get familiar with them,
then return...
Now, why don't we just drop kCharsPerLine? Because of the problem of resizing!
When the user changes the scaler, the console will get resized. If the dialog
@@ -47,7 +47,7 @@ class ScrollBarWidget;
of making things like scrolling, drawing etc. more complicated.
Either way, the current situation is bad, and we should resolve it one way
- or the other (and if you can think of a thirds, feel free to suggest it).
+ or the other (and if you can think of a third, feel free to suggest it).
diff --git a/gui/debugger.h b/gui/debugger.h
index 031e297bef..b74b0d6f0f 100644
--- a/gui/debugger.h
+++ b/gui/debugger.h
@@ -69,7 +69,7 @@ protected:
typedef Common::Functor2<int, const char **, bool> Debuglet;
/**
- * Convenience macro that makes it either to register a method
+ * Convenience macro that makes it easier to register a method
* of a debugger subclass as a command.
* Usage example:
* DCmd_Register("COMMAND", WRAP_METHOD(MyDebugger, MyCmd));