a/src/qtgui/preview_w.h b/src/qtgui/preview_w.h
...
...
89
    Q_OBJECT
89
    Q_OBJECT
90
90
91
    public:
91
    public:
92
92
93
    Preview(int sid, // Search Id
93
    Preview(int sid, // Search Id
94
        const HiliteData& hdata) // Search terms etc. for highlighting
94
        const HighlightData& hdata) // Search terms etc. for highlighting
95
    : QWidget(0), m_searchId(sid), m_hData(hdata)
95
    : QWidget(0), m_searchId(sid), m_hData(hdata)
96
    {
96
    {
97
    init();
97
    init();
98
    }
98
    }
99
    ~Preview(){}
99
    ~Preview(){}
...
...
139
139
140
    bool          m_dynSearchActive;
140
    bool          m_dynSearchActive;
141
    bool          m_canBeep;
141
    bool          m_canBeep;
142
    bool          m_loading;
142
    bool          m_loading;
143
    QWidget      *m_currentW;
143
    QWidget      *m_currentW;
144
    HiliteData    m_hData;
144
    HighlightData m_hData;
145
    bool          m_justCreated; // First tab create is different
145
    bool          m_justCreated; // First tab create is different
146
    bool          m_haveAnchors; // Search terms are marked in text
146
    bool          m_haveAnchors; // Search terms are marked in text
147
    int           m_lastAnchor; // Number of last anchor. Then rewind to 1
147
    int           m_lastAnchor; // Number of last anchor. Then rewind to 1
148
    int           m_curAnchor;
148
    int           m_curAnchor;
149
149