Fixed some inconsistencies in code indentation
[jenirok] / src / common / contactmanager.h
index 904e103..0807519 100644 (file)
 class ContactManager
 {
 public:
-       struct Contact
-       {
-               QString name;
-               QString number;
-               QString street;
-               QString city;
-       };
+    struct Contact
+    {
+        QString name;
+        QString number;
+        QString street;
+        QString city;
+    };
 
-       ContactManager();
-       ~ContactManager();
-       bool addContact(Contact const& contact);
-       bool numberExists(QString const& number);
-       static QString& removeCountryCode(QString& number);
+    ContactManager();
+    ~ContactManager();
+    bool addContact(Contact const& contact);
+    bool numberExists(QString const& number);
+    static QString& removeCountryCode(QString& number);
 
 private:
-       bool load();
-       EBook* book_;
+    bool load();
+    EBook* book_;
 };
 
 #endif