Hi there,<br><br>I haven&#39;t had a look into the code, but maybe I can help here, too:<br><br><div><span class="gmail_quote">2007/3/27, Alexander Sopicki &lt;<a href="mailto:nangkar@gmx.info">nangkar@gmx.info</a>&gt;:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi, Mark!<br><br>I am not an expert of C++ but I think the problem is the following<br>assignment in 
tsvgdigits.cpp:<br><br>m_svgDOM = KGameSvgDocument();</blockquote><div><br>This looks somewhat strange to me. A temporary object of KGameSvgDocument is created (using the default constructor), then assigned to m_svgDOM variable, and is thrown away afterwards (since it is only a temporary object).
<br><br>Wouldn&#39;t the following also work? (Haven&#39;t seen the code, so I don&#39;t know anything about the context.)<br><br>KGameSvgDocument m_svgDOM;<br><br>Keep in mind NOT to use empty parenthesis behind m_svgDOM, because the compiler will misunderstand that! (That&#39;s an inconsistency in C++.)
<br><br>Burkhard<br></div></div>