~ubuntu-branches/ubuntu/trusty/bibletime/trusty

« back to all changes in this revision

Viewing changes to src/frontend/searchdialog/chistorycombobox.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Marsden
  • Date: 2009-11-18 17:30:00 UTC
  • mfrom: (1.3.4 upstream) (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091118173000-endkhjz5qai88tvr
Tags: 2.4-1
* New upstream version 2.4
* debian/control: 
  - Replace incorrect bibletime-data Depends on lib4qt-gui
    with bibletime Depends on libqtgui4 (>= 4.4.0). (Closes: #556209).
  - Add Build-depends: on zlib1g-dev and libcurl4-gnutls-dev 
    (Closes: #556805).

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
#include <QComboBox>
14
14
 
 
15
 
15
16
namespace Search {
16
17
 
17
 
class CHistoryComboBox : public QComboBox
18
 
{
19
 
        Q_OBJECT
20
 
public:
21
 
        CHistoryComboBox(QWidget* parent = 0);
22
 
        ~CHistoryComboBox();
23
 
        void addToHistory(const QString& item);
24
 
        QStringList historyItems() const;
25
 
 
26
 
protected: 
27
 
 
28
 
private:
 
18
class CHistoryComboBox : public QComboBox {
 
19
        Q_OBJECT
 
20
    public:
 
21
        CHistoryComboBox(QWidget* parent = 0);
 
22
        ~CHistoryComboBox();
 
23
        void addToHistory(const QString& item);
 
24
        QStringList historyItems() const;
 
25
 
 
26
    protected:
 
27
 
 
28
    private:
29
29
};
30
30
 
31
31
} //end of namespace Search