summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2011-01-13 22:57:50 (GMT)
committerKevin Smith <git@kismith.co.uk>2011-01-13 23:27:11 (GMT)
commit2957eaa033fc57414080a0c9bdebd51b67c3b047 (patch)
tree534ea3a9d5fb0ea007d8f509dbb312c69cd0048d /Swift/QtUI/QtChatTabs.cpp
parent4feb5e9e8844bc68e13d5119f4749e39fdec0ccc (diff)
downloadswift-2957eaa033fc57414080a0c9bdebd51b67c3b047.zip
swift-2957eaa033fc57414080a0c9bdebd51b67c3b047.tar.bz2
Cleanup after previous patches.
Diffstat (limited to 'Swift/QtUI/QtChatTabs.cpp')
-rw-r--r--Swift/QtUI/QtChatTabs.cpp30
1 files changed, 17 insertions, 13 deletions
diff --git a/Swift/QtUI/QtChatTabs.cpp b/Swift/QtUI/QtChatTabs.cpp
index 3493ba7..b894e9e 100644
--- a/Swift/QtUI/QtChatTabs.cpp
+++ b/Swift/QtUI/QtChatTabs.cpp
@@ -173,7 +173,7 @@ void QtChatTabs::handleTabTitleUpdated(QWidget* widget) {
// look for spectrum-generated and other long JID localparts, and
// try to abbreviate the resulting long tab texts
- QRegExp hasTrailingGarbage( "^(.[-\\w\\s&]+)([^\\s\\w].*)$" );
+ QRegExp hasTrailingGarbage("^(.[-\\w\\s&]+)([^\\s\\w].*)$");
if (hasTrailingGarbage.exactMatch(tabText) &&
hasTrailingGarbage.cap(1).simplified().length() >= 2 &&
hasTrailingGarbage.cap(2).length() >= 7) {
@@ -184,38 +184,42 @@ void QtChatTabs::handleTabTitleUpdated(QWidget* widget) {
}
// QTabBar interprets &, so escape that
- tabText.replace( "&", "&&" );
+ tabText.replace("&", "&&");
// see which alt[a-z] keys other tabs use
bool accelsTaken[26];
int i = 0;
- while (i < 26)
+ while (i < 26) {
accelsTaken[i++] = false;
+ }
int other = tabs_->tabBar()->count();
while (other >= 0) {
other--;
- if ( other != index ) {
+ if (other != index) {
QString t = tabs_->tabBar()->tabText(other).toLower();
- int r = t.indexOf( '&' );
- if ( r >= 0 && t[r+1] >= 'a' && t[r+1] <= 'z' )
+ int r = t.indexOf('&');
+ if (r >= 0 && t[r+1] >= 'a' && t[r+1] <= 'z') {
accelsTaken[t[r+1].unicode()-'a'] = true;
+ }
}
}
// then look to see which letters in tabText may be used
i = 0;
int accelPos = -1;
while (i < tabText.length() && accelPos < 0) {
- if ( tabText[i] >= 'A' && tabText[i] <= 'Z' &&
- !accelsTaken[tabText[i].unicode()-'A'] )
+ if (tabText[i] >= 'A' && tabText[i] <= 'Z' &&
+ !accelsTaken[tabText[i].unicode()-'A']) {
accelPos = i;
- if ( tabText[i] >= 'a' && tabText[i] <= 'z' &&
- !accelsTaken[tabText[i].unicode()-'a'] )
+ }
+ if (tabText[i] >= 'a' && tabText[i] <= 'z' &&
+ !accelsTaken[tabText[i].unicode()-'a']) {
accelPos = i;
+ }
++i;
}
- if (accelPos >= 0)
- tabText = tabText.mid(0, accelPos) + "&" +
- tabText.mid(accelPos);
+ if (accelPos >= 0) {
+ 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
// doesn't work on Arabic/Indic keyboards (where Latin letters