-rw-r--r-- | kaddressbook/jumpbuttonbar.cpp | 11 |
1 files changed, 9 insertions, 2 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 ); + //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,3 +194,3 @@ void JumpButtonBar::recreateButtons() } - + if ( i > 0 ) skipcurrent = !skipcurrent; |