Switch to unified view

a/src/qtgui/recoll.h b/src/qtgui/recoll.h
...
...
20
20
21
#include "rclconfig.h"
21
#include "rclconfig.h"
22
#include "rcldb.h"
22
#include "rcldb.h"
23
#include "ptmutex.h"
23
#include "ptmutex.h"
24
24
25
#include <QString>
26
25
// Misc declarations in need of sharing between the UI files
27
// Misc declarations in need of sharing between the UI files
26
28
27
// Open the database if needed. We now force a close/open by default
29
// Open the database if needed. We now force a close/open by default
28
extern bool maybeOpenDb(std::string &reason, bool force = true, 
30
extern bool maybeOpenDb(std::string &reason, bool force = true, 
29
            bool *maindberror = 0);
31
            bool *maindberror = 0);
...
...
40
42
41
extern Rcl::Db *rcldb;
43
extern Rcl::Db *rcldb;
42
extern int recollNeedsExit;
44
extern int recollNeedsExit;
43
extern void startManual(const string& helpindex);
45
extern void startManual(const string& helpindex);
44
46
47
extern void applyStyleSheet(const QString&);
48
45
#ifdef RCL_USE_ASPELL
49
#ifdef RCL_USE_ASPELL
46
class Aspell;
50
class Aspell;
47
extern Aspell *aspell;
51
extern Aspell *aspell;
48
#endif
52
#endif
49
53