CVS commit by mornfall: - add a prerequisites section to readme - fix typo in libkapture/pkgnodeview.cpp
M +7 -0 README 1.7 M +1 -1 libkapture/listtreeview.cpp 1.2 M +1 -1 libkapture/pkgnodeview.cpp 1.4 --- kdenonbeta/kdedebian/kapture/README #1.6:1.7 @@ -4,4 +4,11 @@ (or maybe something else...) +PREREQUISITES +You need libtagcoll-dev debian package (or equivalent for other distributions) +and libapt-pkg-dev to build kapture. I have at least one report from rpm-based +system user, who said kapture compiles and runs for him (after commenting out +the loadTags () from libcapture/pkgmanager.cpp, PkgManager constructor, as +there is no debtags system on Arklinux)... Hello rasta :). + SUPPORT FOR KDE 3.1 WAS SCRAPPED DUE TO AUTOTOOLS PROBLEMS YOU NEED KDE 3.2 --- kdenonbeta/kdedebian/kapture/libkapture/listtreeview.cpp #1.1:1.2 @@ -41,5 +41,5 @@ void ListTreeView::filterStringChanged ( kdDebug () << "ListTreeView::filterStringChanged (" << text << ");" << endl; argmap a; - a ["string"] = std::string (text); + a ["string"] = std::string (text.utf8 ()); m_quickGrouper -> setArgs (a); } --- kdenonbeta/kdedebian/kapture/libkapture/pkgnodeview.cpp #1.3:1.4 @@ -205,5 +205,5 @@ void PkgNodeViewCommon::setWanted (bool { PkgCache::ExtState *st = (PkgManager::cache ()) -> extState (m_pkg); - st -> a_wanted = w; + st -> u_wanted = w; PkgManager::notifyRefresh (); }