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

(-)tqt3/src/tools/qsettings.cpp.orig (-1 / +24 lines)
Lines 39-44 Link Here
39
**********************************************************************/
39
**********************************************************************/
40
40
41
#include "qplatformdefs.h"
41
#include "qplatformdefs.h"
42
#include <stdlib.h>
42
43
43
// POSIX Large File Support redefines open -> open64
44
// POSIX Large File Support redefines open -> open64
44
static inline int qt_open( const char *pathname, int flags, mode_t mode )
45
static inline int qt_open( const char *pathname, int flags, mode_t mode )
Lines 468-474 Link Here
468
    Q_UNUSED( format );
469
    Q_UNUSED( format );
469
#endif
470
#endif
470
471
471
    TQString appSettings(TQDir::homeDirPath() + "/.qt/");
472
    TQString home;
473
    home = getenv("TQT_HOME_DIR");
474
    if ( !home.isEmpty() ) {
475
       home += "/";
476
       TQFileInfo i( home + "qtrc" );
477
       if ( !i.isReadable() ) {
478
         home = TQDir::homeDirPath() + "/.qt/";
479
       }
480
    } else {
481
       home = TQDir::homeDirPath() + "/.qt/";
482
    }
483
    TQString appSettings(home);
484
472
    TQString defPath;
485
    TQString defPath;
473
#ifdef Q_WS_WIN
486
#ifdef Q_WS_WIN
474
#ifdef Q_OS_TEMP
487
#ifdef Q_OS_TEMP
Lines 517-522 Link Here
517
530
518
    if ( !!defPath )
531
    if ( !!defPath )
519
	searchPaths.append(defPath);
532
	searchPaths.append(defPath);
533
534
    TQString system;
535
    system = getenv("TQT_SYSTEM_DIR");
536
    if ( !system.isEmpty() && system[0] == '/') {
537
       TQFileInfo i( system + "/qtrc" );
538
       if ( i.isReadable() ) {
539
           searchPaths.append(system);
540
       }
541
    }
542
520
    searchPaths.append(dir.path());
543
    searchPaths.append(dir.path());
521
}
544
}
522
545

Return to bug 1525