author | zautrix <zautrix> | 2005-01-27 14:15:50 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-27 14:15:50 (UTC) |
commit | cd1b9287f2bcd59652ef66186d00dcf5ff8a2a46 (patch) (unidiff) | |
tree | 99db53425edb1c68cd880e8221805e0f84ae9a75 | |
parent | 32ad6c6cc658d952c9dfa1fcf5857662bcf01c22 (diff) | |
download | kdepimpi-cd1b9287f2bcd59652ef66186d00dcf5ff8a2a46.zip kdepimpi-cd1b9287f2bcd59652ef66186d00dcf5ff8a2a46.tar.gz kdepimpi-cd1b9287f2bcd59652ef66186d00dcf5ff8a2a46.tar.bz2 |
jump 1
-rw-r--r-- | kaddressbook/jumpbuttonbar.cpp | 15 |
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() | |||
101 | QString character = button->character(); | 101 | QString character = button->character(); |
102 | if ( character.length() == 2 ) | ||
103 | character = character.left(1) +"-"+character.right(1); | ||
102 | if ( !character.isNull() ) | 104 | if ( !character.isNull() ) |
103 | emit jumpToLetter( character ); | 105 | emit jumpToLetter( character ); |
106 | //qDebug("emit *%s* ",character.latin1()); | ||
104 | } | 107 | } |
@@ -124,2 +127,3 @@ void JumpButtonBar::recreateButtons() | |||
124 | } | 127 | } |
128 | mCharacters.append( "*"); | ||
125 | for ( it = ab->begin(); it != ab->end(); ++it ) { | 129 | for ( it = ab->begin(); it != ab->end(); ++it ) { |
@@ -160,3 +164,3 @@ void JumpButtonBar::recreateButtons() | |||
160 | //qDebug("cc %d ",mCharacters.count() ); | 164 | //qDebug("cc %d ",mCharacters.count() ); |
161 | JumpButton *button; | 165 | JumpButton *button = 0; |
162 | int row = 0, col = 0; | 166 | int row = 0, col = 0; |
@@ -166,2 +170,5 @@ void JumpButtonBar::recreateButtons() | |||
166 | --skipcount; | 170 | --skipcount; |
171 | if ( button ) { | ||
172 | button->setCharacter( button->character() + mCharacters[ i ]); | ||
173 | } | ||
167 | } else { | 174 | } else { |
@@ -187,4 +194,4 @@ void JumpButtonBar::recreateButtons() | |||
187 | } | 194 | } |
188 | 195 | if ( i > 0 ) | |
189 | skipcurrent = !skipcurrent; | 196 | skipcurrent = !skipcurrent; |
190 | } | 197 | } |