diff --git a/zeal/mainwindow.h b/zeal/mainwindow.h index fd74928..615a326 100644 --- a/zeal/mainwindow.h +++ b/zeal/mainwindow.h @@ -30,9 +30,8 @@ extern const QString serverName; // Represents per tab search state. // needs to contain [search input, search model, section model, url] -typedef struct SearchState +struct SearchState { -public: QWebPage *page; // model representing sections ZealSearchModel sectionsList; @@ -48,7 +47,7 @@ public: int scrollPosition; int sectionsScroll; -} SearchState; +}; class MainWindow : public QMainWindow { diff --git a/zeal/zealdocsetsregistry.h b/zeal/zealdocsetsregistry.h index 49a0f78..c55fe75 100644 --- a/zeal/zealdocsetsregistry.h +++ b/zeal/zealdocsetsregistry.h @@ -21,7 +21,7 @@ class ZealDocsetsRegistry : public QObject { Q_OBJECT public: - typedef struct { + struct docsetEntry { QString name; QString prefix; QSqlDatabase db; @@ -29,7 +29,7 @@ public: DocSetType type; ZealDocsetMetadata metadata; ZealDocsetInfo info; - } docsetEntry; + }; static ZealDocsetsRegistry* instance() {