Switch to unified view

a/src/kde/kioslave/kio_recoll-kde4/kio_recoll.h b/src/kde/kioslave/kio_recoll-kde4/kio_recoll.h
...
...
30
30
31
#include "rclconfig.h"
31
#include "rclconfig.h"
32
#include "rcldb.h"
32
#include "rcldb.h"
33
#include "reslistpager.h"
33
#include "reslistpager.h"
34
#include "docseq.h"
34
#include "docseq.h"
35
#include MEMORY_INCLUDE
35
#include <memory>
36
36
37
class RecollProtocol;
37
class RecollProtocol;
38
38
39
/** Specialize the recoll html pager for the kind of links we use etc. */
39
/** Specialize the recoll html pager for the kind of links we use etc. */
40
class RecollKioPager : public ResListPager {
40
class RecollKioPager : public ResListPager {
...
...
179
    // changes. This is very wasteful but hopefully won't happen too
179
    // changes. This is very wasteful but hopefully won't happen too
180
    // much in actual use. One possible workaround for some scenarios
180
    // much in actual use. One possible workaround for some scenarios
181
    // (one slave several konqueror windows) would be to have a small
181
    // (one slave several konqueror windows) would be to have a small
182
    // cache of recent searches kept open.
182
    // cache of recent searches kept open.
183
    RecollKioPager m_pager;
183
    RecollKioPager m_pager;
184
    STD_SHARED_PTR<DocSequence> m_source;
184
    std::shared_ptr<DocSequence> m_source;
185
    // Note: page here is not used, current page always comes from m_pager.
185
    // Note: page here is not used, current page always comes from m_pager.
186
    QueryDesc      m_query;
186
    QueryDesc      m_query;
187
};
187
};
188
188
189
extern "C" {int kdemain(int, char**);}
189
extern "C" {int kdemain(int, char**);}