diff src/UiGuiIniFileParser.h @ 755:302411a51c00

[fix] Bug ID 3006513: Calling the default constructor out of another constructor is forbidden and does not compile with recent GCC versions. Fixed this by introducing an init function. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@1032 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Mon, 11 Apr 2011 20:27:30 +0000
parents ac165b6ae67e
children f3631db17328
line wrap: on
line diff
--- a/src/UiGuiIniFileParser.h	Tue Dec 21 23:07:50 2010 +0000
+++ b/src/UiGuiIniFileParser.h	Mon Apr 11 20:27:30 2011 +0000
@@ -38,6 +38,9 @@
     QVariant value(const QString &keyName, const QString &defaultValue = "");
     QStringList childGroups();
 
+protected:
+	void init();
+
 private:
     void parseIniFile();