[sword-svn] r3536 - trunk/bindings/corba/orbitcpp

scribe at crosswire.org scribe at crosswire.org
Sun Nov 26 02:26:23 MST 2017


Author: scribe
Date: 2017-11-26 02:26:22 -0700 (Sun, 26 Nov 2017)
New Revision: 3536

Modified:
   trunk/bindings/corba/orbitcpp/webmgr.hpp
Log:
Really fixed initiatization reordering warning

Modified: trunk/bindings/corba/orbitcpp/webmgr.hpp
===================================================================
--- trunk/bindings/corba/orbitcpp/webmgr.hpp	2017-11-26 09:24:36 UTC (rev 3535)
+++ trunk/bindings/corba/orbitcpp/webmgr.hpp	2017-11-26 09:26:22 UTC (rev 3536)
@@ -44,7 +44,7 @@
 	char *extraConf;
 
 public:
-	WebMgr(const char *path, const char *extraConfPath = 0) : extraConf(0), SWMgr(path, false, new MarkupFilterMgr(FMT_WEBIF)) { init(); if (extraConfPath) stdstr(&extraConf, extraConfPath); }
+	WebMgr(const char *path, const char *extraConfPath = 0) : SWMgr(path, false, new MarkupFilterMgr(FMT_WEBIF)) { init(); if (extraConfPath) stdstr(&extraConf, extraConfPath); }
 	WebMgr(SWConfig *sysConf) : SWMgr(0, sysConf, false, new MarkupFilterMgr(FMT_WEBIF)) { init(); }
 	void init() {
 		extraConf         = 0;




More information about the sword-cvs mailing list