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

(-)a/CMakeLists.txt (+1 lines)
Lines 57-62 include( ConfigureChecks.cmake ) Link Here
57
57
58
add_definitions(
58
add_definitions(
59
  -DHAVE_CONFIG_H
59
  -DHAVE_CONFIG_H
60
  -D_LARGEFILE64_SOURCE
60
)
61
)
61
62
62
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
63
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
(-)a/src/kio_locate.cpp (-3 / +4 lines)
Lines 32-37 Link Here
32
#include <kapplication.h>
32
#include <kapplication.h>
33
#include <kconfigdialog.h>
33
#include <kconfigdialog.h>
34
#include <kdebug.h>
34
#include <kdebug.h>
35
#include <kde_file.h>
35
#include <kiconloader.h>
36
#include <kiconloader.h>
36
#include <klocale.h>
37
#include <klocale.h>
37
#include <kurl.h>
38
#include <kurl.h>
Lines 188-194 static void addAtom(UDSEntry& entry, unsigned int uds, const TQString& s) Link Here
188
}
189
}
189
190
190
191
191
static void addAtom(UDSEntry& entry, unsigned int uds, long l)
192
static void addAtom(UDSEntry& entry, unsigned int uds, long long l)
192
{
193
{
193
    UDSAtom a;
194
    UDSAtom a;
194
    a.m_uds = uds;
195
    a.m_uds = uds;
Lines 204-211 static const UDSEntry pathToUDSEntry(const TQString& path, const TQString& displ Link Here
204
    addAtom(entry, KIO::UDS_NAME, display);
205
    addAtom(entry, KIO::UDS_NAME, display);
205
206
206
    if (!path.isEmpty()) {
207
    if (!path.isEmpty()) {
207
        struct stat info;
208
        KDE_struct_stat info;
208
        lstat(path.local8Bit(), &info);
209
        KDE_lstat(path.local8Bit(), &info);
209
210
210
        addAtom(entry, KIO::UDS_SIZE, info.st_size);
211
        addAtom(entry, KIO::UDS_SIZE, info.st_size);
211
        addAtom(entry, KIO::UDS_ACCESS, info.st_mode);
212
        addAtom(entry, KIO::UDS_ACCESS, info.st_mode);

Return to bug 586