summaryrefslogtreecommitdiffabout
path: root/kaddressbook/jumpbuttonbar.cpp
Side-by-side diff
Diffstat (limited to 'kaddressbook/jumpbuttonbar.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/jumpbuttonbar.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/kaddressbook/jumpbuttonbar.cpp b/kaddressbook/jumpbuttonbar.cpp
index 184d516..b12d9e7 100644
--- a/kaddressbook/jumpbuttonbar.cpp
+++ b/kaddressbook/jumpbuttonbar.cpp
@@ -101,4 +101,7 @@ void JumpButtonBar::letterClicked()
QString character = button->character();
+ if ( character.length() == 2 )
+ character = character.left(1) +"-"+character.right(1);
if ( !character.isNull() )
- emit jumpToLetter( character );
+ emit jumpToLetter( character );
+ //qDebug("emit *%s* ",character.latin1());
}
@@ -124,2 +127,3 @@ void JumpButtonBar::recreateButtons()
}
+ mCharacters.append( "*");
for ( it = ab->begin(); it != ab->end(); ++it ) {
@@ -160,3 +164,3 @@ void JumpButtonBar::recreateButtons()
//qDebug("cc %d ",mCharacters.count() );
- JumpButton *button;
+ JumpButton *button = 0;
int row = 0, col = 0;
@@ -166,2 +170,5 @@ void JumpButtonBar::recreateButtons()
--skipcount;
+ if ( button ) {
+ button->setCharacter( button->character() + mCharacters[ i ]);
+ }
} else {
@@ -187,4 +194,4 @@ void JumpButtonBar::recreateButtons()
}
-
- skipcurrent = !skipcurrent;
+ if ( i > 0 )
+ skipcurrent = !skipcurrent;
}