From kde-bugs-dist Thu Jun 30 23:24:25 2005 From: Daniel Teske Date: Thu, 30 Jun 2005 23:24:25 +0000 To: kde-bugs-dist Subject: [Bug 99700] bookmark search could be more advanced Message-Id: <20050630232425.14908.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=112017387506059 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=99700 teske squorn de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From teske squorn de 2005-07-01 01:24 ------- SVN commit 430333 by teske: Add a more advanced search line to keditbookmarks. Instead of showing only those matching e.g. "keyword1 keyword2" exactly, show those items, which contain keyword1 AND keyword2. BUG: 99700 M +1 -1 Makefile.am A kebsearchline.cpp [License: GPL (wrong address)] A kebsearchline.h [License: GPL (wrong address)] M +2 -2 toplevel.cpp --- trunk/KDE/kdebase/konqueror/keditbookmarks/Makefile.am #430332:430333 @ -12,7 +12,7 @ dcop_DCOPIDLNG = true keditbookmarks_la_SOURCES = main.cpp listview.cpp toplevel.cpp actionsimpl.cpp commands.cpp importers.cpp dcop.skel dcop.cpp bookmarkiterator.cpp \ - testlink.cpp favicons.cpp updater.cpp exporters.cpp kbookmarknotifier.stub bookmarkinfo.cpp settings.kcfgc + testlink.cpp favicons.cpp updater.cpp exporters.cpp kbookmarknotifier.stub bookmarkinfo.cpp kebsearchline.cpp settings.kcfgc kbookmarknotifier_DIR = $(includedir) keditbookmarks_la_LIBADD = $(top_builddir)/libkonq/libkonq.la keditbookmarks_la_LDFLAGS = $(all_libraries) -module -avoid-version --- trunk/KDE/kdebase/konqueror/keditbookmarks/toplevel.cpp #430332:430333 @ -28,6 +28,7 @ #include "exporters.h" #include "settings.h" #include "commands.h" +#include "kebsearchline.h" #include @ -49,7 +50,6 @ #include #include #include -#include #include @ -222,7 +222,7 @ QLabel *lbl = new QLabel(i18n("Se&arch:"), quicksearch, "kde toolbar widget"); - KListViewSearchLine *searchLineEdit = new KListViewSearchLine(quicksearch, 0, "KListViewSearchLine"); + KListViewSearchLine *searchLineEdit = new KEBSearchLine(quicksearch, 0, "KListViewSearchLine"); quicksearch->setStretchableWidget(searchLineEdit); lbl->setBuddy(searchLineEdit); connect(resetQuickSearch, SIGNAL(activated()), searchLineEdit, SLOT(clear()));