diff ui/administratorwindow.h @ 453:6dec8101793c

Rename settings and certlist and add accessors
author Andre Heinecke <aheinecke@intevation.de>
date Wed, 23 Apr 2014 10:34:56 +0000
parents d08e39b913ee
children 5200b8e9b2ae
line wrap: on
line diff
--- a/ui/administratorwindow.h	Wed Apr 23 10:33:40 2014 +0000
+++ b/ui/administratorwindow.h	Wed Apr 23 10:34:56 2014 +0000
@@ -32,6 +32,16 @@
 public:
     AdministratorWindow();
 
+    /** @brief obtain a const reference to the certificate List
+     * @returns the current certificatelist
+     */
+    const CertificateList& certList() const {return mCertList;}
+
+    /** @brief get the settings for this application
+     * @returns a reference the applications settings object
+     */
+    QSettings* settings() {return &mSettings;}
+
 private slots:
     void createInstaller();
     void showAbout();
@@ -48,12 +58,12 @@
     void loadCertificateTable();
     void addToCertificateTable(const QList<Certificate> &certs);
 
-    QSettings settings;
+    QSettings mSettings;
 
     QMenuBar *menuBar;
 
     QTableView *certificateView;
-    CertificateList certList;
+    CertificateList mCertList;
     CertificateTabelModel *certificateModel;
     QPushButton *saveButton;
     QPushButton *loadButton;

http://wald.intevation.org/projects/trustbridge/