[Konsole-devel] [Bug 105126] Find dialog loses focus when string is not found or search wraps around
Kurt V.Hindenburg
kurt.hindenburg at kdemail.net
Sun May 8 05:04:32 UTC 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=105126
kurt.hindenburg kdemail net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From kurt.hindenburg kdemail net 2005-05-08 07:04 -------
SVN commit 410615 by hindenburg:
Fix find dialog's focus. Thanks for patch!
BUG: 105126
M +3 -3 trunk/KDE/kdebase/konsole/konsole/konsole.cpp
--- trunk/KDE/kdebase/konsole/konsole/konsole.cpp #410614:410615
@ -3704,7 +3704,7 @
else
if (m_find_found) {
if (forward) {
- if ( KMessageBox::questionYesNo( this,
+ if ( KMessageBox::questionYesNo( m_finddialog,
i18n("End of history reached.\n" "Continue from the beginning?"),
i18n("Find") ) == KMessageBox::Yes ) {
m_find_first = true;
@ -3712,7 +3712,7 @
}
}
else {
- if ( KMessageBox::questionYesNo( this,
+ if ( KMessageBox::questionYesNo( m_finddialog,
i18n("Beginning of history reached.\n" "Continue from the end?"),
i18n("Find") ) == KMessageBox::Yes ) {
m_find_first = true;
@ -3721,7 +3721,7 @
}
}
else
- KMessageBox::information( this,
+ KMessageBox::information( m_finddialog,
i18n( "Search string '%1' not found." ).arg(KStringHandler::csqueeze(m_find_pattern)),
i18n( "Find" ) );
}
More information about the konsole-devel
mailing list