| Summary: | kbabel freeze process after search | ||
|---|---|---|---|
| Product: | [Unmaintained] kbabel | Reporter: | manolis <manolis> |
| Component: | KBabel editor | Assignee: | Stanislav Visnovsky <visnovsky> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.10.2 | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
manolis
2005-09-10 08:53:47 UTC
Increasing severity to "major" (as it is a freeze). Same with kde 3.5 version of kbabel... Why this bug is still UNCONFIRMED? There is noone that can reproduce it? SVN commit 604049 by johach:
Avoid endless loop if focus is taken away before "find next" operation.
BUG:112350
M +1 -1 kbabelview.cpp
--- branches/KDE/3.5/kdesdk/kbabel/kbabel/kbabelview.cpp #604048:604049
@@ -1959,7 +1959,7 @@
pos.part = Msgid;
pos.offset = msgidLabel->currentIndex();
}
- else if(msgstrEdit->hasFocus()){
+ else {
pos.part = Msgstr;
pos.offset = msgstrEdit->currentIndex();
pos.form = msgstrEdit->currentForm();
|