summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-01-26 20:00:17 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-01-26 20:00:17 (GMT)
commitc434b60768c73c22bc539d28d4f44941f804a53e (patch)
treec13fcbc7599fd8ed51a22aa18c6efea4d84e1383 /Swift/QtUI/QtChatTabs.cpp
parent256f9df327d13447ec110bbaebe813b86e57a610 (diff)
downloadswift-c434b60768c73c22bc539d28d4f44941f804a53e.zip
swift-c434b60768c73c22bc539d28d4f44941f804a53e.tar.bz2
Fixed undefined behavior & removed illegal chars in QtChatTabs.
Diffstat (limited to 'Swift/QtUI/QtChatTabs.cpp')
-rw-r--r--Swift/QtUI/QtChatTabs.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatTabs.cpp b/Swift/QtUI/QtChatTabs.cpp
index 134a3cc..60beb50 100644
--- a/Swift/QtUI/QtChatTabs.cpp
+++ b/Swift/QtUI/QtChatTabs.cpp
@@ -190,7 +190,8 @@ void QtChatTabs::handleTabTitleUpdated(QWidget* widget) {
bool accelsTaken[26];
int i = 0;
while (i < 26) {
- accelsTaken[i++] = (i == 0); //A is used for 'switch to active tab'
+ accelsTaken[i] = (i == 0); //A is used for 'switch to active tab'
+ i++;
}
int other = tabs_->tabBar()->count();
while (other >= 0) {
@@ -221,7 +222,7 @@ void QtChatTabs::handleTabTitleUpdated(QWidget* widget) {
tabText = tabText.mid(0, accelPos) + "&" + tabText.mid(accelPos);
}
// this could be improved on some european keyboards, such as
- // the German one (where alt-ß is available) and basically
+ // the German one (where alt-B is available) and basically
// doesn't work on Arabic/Indic keyboards (where Latin letters
// aren't available), but I don't care to deal with those.