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 988
Collapse All | Expand All

(-)kdesktop/kxdglauncher.cpp~ (-2 / +2 lines)
Lines 103-109 Link Here
103
			TQDir myqdir;
103
			TQDir myqdir;
104
			if (myqdir.exists(getDocumentPath(), TRUE) == true) {
104
			if (myqdir.exists(getDocumentPath(), TRUE) == true) {
105
				if (args->isSet( "getpath" ) == true) {
105
				if (args->isSet( "getpath" ) == true) {
106
					printf("%s\n\r", getDocumentPath().ascii());
106
					printf("%s\n\r", (const char *)getDocumentPath().local8Bit());
107
					return 0;
107
					return 0;
108
				}
108
				}
109
				else {
109
				else {
Lines 140-146 Link Here
140
							config.writeEntry("XDG_DOCUMENTS_DIR", TQString("\"") + xdgModifiedDirectory + TQString("\""), true);
140
							config.writeEntry("XDG_DOCUMENTS_DIR", TQString("\"") + xdgModifiedDirectory + TQString("\""), true);
141
							config.sync();
141
							config.sync();
142
							if (args->isSet( "getpath" ) == true) {
142
							if (args->isSet( "getpath" ) == true) {
143
								printf("%s\n\r", getDocumentPath().ascii());
143
								printf("%s\n\r", (const char *)getDocumentPath().local8Bit());
144
								return 0;
144
								return 0;
145
							}
145
							}
146
							else {
146
							else {

Return to bug 988