2009-09-29. Making Kuickshow (KDE-3.5.10 kdegraphics) display just the basename of the file, not the full path and 'file://' url format. The advantage is being able actually to see the filename in the window titlebar, since most paths are too long to allow the final part to show! (following lines are relevant to getting a gentoo system to let the changes be made in the process of getting/compiling/installing the package) # ebuild /usr/portage/kde-base/kuickshow/kuickshow-3.5.10.ebuild unpack # cd /tmp/portage/kde-base/kuickshow-3.5.10/work/kuickshow-3.5.10/kuickshow/src/ # vi imagewindow.cpp (edit line 314 of imagewindow.cpp) - arg( m_kuim->originalHeight() ).arg( m_kuim->url().prettyURL() ); + arg( m_kuim->originalHeight() ).arg( m_kuim->url().fileName() ); # ebuild /usr/portage/kde-base/kuickshow/kuickshow-3.5.10.ebuild merge