By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1259
Collapse All | Expand All

(-)gtk-qt-engine/src/qt_qt_wrapper.cpp (-1 / +3 lines)
Lines 22-27 Link Here
22
#include <kcmdlineargs.h>
22
#include <kcmdlineargs.h>
23
#include <kaboutdata.h>
23
#include <kaboutdata.h>
24
#include <kconfig.h>
24
#include <kconfig.h>
25
#include <kglobal.h>
26
#include <kstandarddirs.h>
25
27
26
#undef signals
28
#undef signals
27
#include <gdk/gdkx.h>
29
#include <gdk/gdkx.h>
Lines 2013-2019 Link Here
2013
	// In order to speed it up, we can store the results in a file, along with the name of icon
2015
	// In order to speed it up, we can store the results in a file, along with the name of icon
2014
	// theme and style.  This file can then be regenerated when the icon theme or style change.
2016
	// theme and style.  This file can then be regenerated when the icon theme or style change.
2015
	
2017
	
2016
	TQString cacheFilePath = TQDir::homeDirPath() + "/.gtk_qt_engine_rc";
2018
	TQString cacheFilePath = KGlobal::dirs()->saveLocation("cache")+"/gtk_qt_engine_rc";
2017
	TQFile cacheFile(cacheFilePath);
2019
	TQFile cacheFile(cacheFilePath);
2018
	TQTextStream stream;
2020
	TQTextStream stream;
2019
	
2021
	

Return to bug 1259