Index: Makefile.am
===================================================================
RCS file: /home/kde/kdesdk/kbugbuster/gui/Makefile.am,v
retrieving revision 1.20
diff -u -3 -p -r1.20 Makefile.am
--- Makefile.am	14 Mar 2003 14:14:14 -0000	1.20
+++ Makefile.am	18 Nov 2003 23:57:36 -0000
@@ -13,7 +13,8 @@ libkbbmainwindow_la_SOURCES = packagelvi
                               packageselectdialog.cpp messageeditor.cpp \
                               severityselectdialog.cpp \
                               preferencesdialog.cpp loadallbugsdlg.cpp \
-                              serverconfigdialog.cpp
+                              serverconfigdialog.cpp \
+                              klistviewsearchline.cpp
 
 METASOURCES = AUTO
 
Index: cwbuglistcontainer.cpp
===================================================================
RCS file: /home/kde/kdesdk/kbugbuster/gui/cwbuglistcontainer.cpp,v
retrieving revision 1.29
diff -u -3 -p -r1.29 cwbuglistcontainer.cpp
--- cwbuglistcontainer.cpp	16 Jul 2003 21:54:56 -0000	1.29
+++ cwbuglistcontainer.cpp	18 Nov 2003 23:57:36 -0000
@@ -34,6 +34,9 @@
 #include "kfind.h"
 
 #include "cwbuglistcontainer.h"
+
+#include "klistviewsearchline.h"
+
 #include <kfinddialog.h>
 
 using namespace KBugBusterMainWindow;
@@ -54,11 +57,15 @@ CWBugListContainer::CWBugListContainer( 
     m_listLabel->setFont( f );
 
     m_listStack = new QWidgetStack( this );
-    topLayout->addWidget( m_listStack );
-    topLayout->setStretchFactor( m_listStack, 1 );
 
     // Create Outstanding Bugs listview
     m_listBugs = new KListView( m_listStack );
+
+    topLayout->addWidget( new KListViewSearchLine( this, m_listBugs ) );
+    topLayout->addWidget( m_listStack );
+    topLayout->setStretchFactor( m_listStack, 1 );
+
+
     m_listBugs->addColumn( i18n( "Number" ) );
     m_listBugs->addColumn( i18n( "Title" ), 500 ); // so that the widthmode isn't "Maximum"
     m_listBugs->addColumn( i18n( "Status" ) );

