[Konversation-devel] [Bug 130074] Inline search / shortcut conflict (resolving Konqueror vs. Konversation)
Eike Hein
sho at eikehein.com
Sat Jul 1 21:26:37 CEST 2006
------- 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=130074
sho eikehein com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From sho eikehein com 2006-07-01 21:26 -------
SVN commit 556874 by hein:
Have "Find Next" open the search bar when there is no active search,
matching Konqueror search dialog behavior.
BUG:130074
M +5 -2 ircview.cpp
M +0 -1 nicklistview.cpp
--- trunk/extragear/network/konversation/src/ircview.cpp #556873:556874
@ -1173,9 +1173,12 @
void IRCView::searchAgain()
{
-
- if(!m_pattern.isEmpty())
+ if (m_pattern.isEmpty())
{
+ emit doSearch();
+ }
+ else
+ {
// next search must begin one index before / after the last search
// depending on the search direction.
if(m_forward)
--- trunk/extragear/network/konversation/src/nicklistview.cpp #556873:556874
@ -22,7 +22,6 @
#include <qdragobject.h>
#include "images.h"
-#include "nick.h"
#include "konversationapplication.h"
#include "nicklistview.h"
More information about the Konversation-devel
mailing list