aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorD G Turner2012-03-25 23:29:19 +0100
committerD G Turner2012-03-25 23:29:19 +0100
commit371bc1ddc123984b5334a6bbfc105493306ffc3b (patch)
tree8afcda0a99eba250cafbd6557c1acb9438966e0e /gui
parent6a6831014c3907dcd02514306b8334edb553596e (diff)
downloadscummvm-rg350-371bc1ddc123984b5334a6bbfc105493306ffc3b.tar.gz
scummvm-rg350-371bc1ddc123984b5334a6bbfc105493306ffc3b.tar.bz2
scummvm-rg350-371bc1ddc123984b5334a6bbfc105493306ffc3b.zip
GUI: Fix for WinCE compile failure after predictive dialog changes.
This is probably due to a collision with WinCE toolchain system define, so changing the enum from all capitalised to Camel Case constant style.
Diffstat (limited to 'gui')
-rw-r--r--gui/predictivedialog.cpp24
-rw-r--r--gui/predictivedialog.h12
2 files changed, 18 insertions, 18 deletions
diff --git a/gui/predictivedialog.cpp b/gui/predictivedialog.cpp
index a0b183fa7d..d9c3a58e24 100644
--- a/gui/predictivedialog.cpp
+++ b/gui/predictivedialog.cpp
@@ -435,7 +435,7 @@ void PredictiveDialog::processBtnActive(ButtonId button) {
if (_prefix.size())
_prefix.deleteLastChar();
}
- } else if (_prefix.size() + _currentCode.size() < MAXWORDLEN - 1) { // don't overflow the dialog line
+ } else if (_prefix.size() + _currentCode.size() < kMaxWordLen - 1) { // don't overflow the dialog line
if (button == kBtn0Act) { // zero
_currentCode += buttonStr[9];
} else {
@@ -465,9 +465,9 @@ void PredictiveDialog::processBtnActive(ButtonId button) {
if (_mode == kModePre) {
if (_unitedDict.dictActLine && _numMatchingWords > 1) {
_wordNumber = (_wordNumber + 1) % _numMatchingWords;
- char tmp[MAXLINELEN];
- strncpy(tmp, _unitedDict.dictActLine, MAXLINELEN);
- tmp[MAXLINELEN - 1] = 0;
+ char tmp[kMaxLineLen];
+ strncpy(tmp, _unitedDict.dictActLine, kMaxLineLen);
+ tmp[kMaxLineLen - 1] = 0;
char *tok = strtok(tmp, " ");
for (uint8 i = 0; i <= _wordNumber; i++)
tok = strtok(NULL, " ");
@@ -595,12 +595,12 @@ void PredictiveDialog::bringWordtoTop(char *str, int wordnum) {
// by moving the word at position 'wordnum' to the front (that is, right behind
// right behind the numerical code word at the start of the line).
Common::Array<Common::String> words;
- char buf[MAXLINELEN];
+ char buf[kMaxLineLen];
if (!str)
return;
- strncpy(buf, str, MAXLINELEN);
- buf[MAXLINELEN - 1] = 0;
+ strncpy(buf, str, kMaxLineLen);
+ buf[kMaxLineLen - 1] = 0;
char *word = strtok(buf, " ");
if (!word) {
debug("Predictive Dialog: Invalid dictionary line");
@@ -648,7 +648,7 @@ bool PredictiveDialog::matchWord() {
return false;
// If the currently entered text is too long, it cannot match anything.
- if (_currentCode.size() > MAXWORDLEN)
+ if (_currentCode.size() > kMaxWordLen)
return false;
// The entries in the dictionary consist of a code, a space, and then
@@ -668,9 +668,9 @@ bool PredictiveDialog::matchWord() {
_currentWord.clear();
_wordNumber = 0;
if (0 == strncmp(_unitedDict.dictLine[line], _currentCode.c_str(), _currentCode.size())) {
- char tmp[MAXLINELEN];
- strncpy(tmp, _unitedDict.dictLine[line], MAXLINELEN);
- tmp[MAXLINELEN - 1] = 0;
+ char tmp[kMaxLineLen];
+ strncpy(tmp, _unitedDict.dictLine[line], kMaxLineLen);
+ tmp[kMaxLineLen - 1] = 0;
char *tok = strtok(tmp, " ");
tok = strtok(NULL, " ");
_currentWord = Common::String(tok, _currentCode.size());
@@ -821,7 +821,7 @@ void PredictiveDialog::addWord(Dict &dict, const String &word, const String &cod
}
void PredictiveDialog::addWordToDict() {
- if (_numMemory < MAXWORD) {
+ if (_numMemory < kMaxWord) {
addWord(_unitedDict, _currentWord, _currentCode);
addWord(_userDict, _currentWord, _currentCode);
} else {
diff --git a/gui/predictivedialog.h b/gui/predictivedialog.h
index 6d7cd320b7..34686c95e7 100644
--- a/gui/predictivedialog.h
+++ b/gui/predictivedialog.h
@@ -57,9 +57,9 @@ enum {
};
enum {
- MAXLINELEN = 80,
- MAXWORDLEN = 24,
- MAXWORD = 50
+ kMaxLineLen = 80,
+ kMaxWordLen = 24,
+ kMaxWord = 50
};
class PredictiveDialog : public GUI::Dialog {
@@ -121,10 +121,10 @@ private:
uint32 _curTime, _lastTime;
ButtonId _lastPressBtn;
- char _temp[MAXWORDLEN + 1];
- int _repeatcount[MAXWORDLEN];
+ char _temp[kMaxWordLen + 1];
+ int _repeatcount[kMaxWordLen];
- char *_memoryList[MAXWORD];
+ char *_memoryList[kMaxWord];
int _numMemory;
String _search;