Thread overview
Internal error 349
Jun 24, 2003
chris elliott
Jun 24, 2003
Walter
Jul 08, 2003
ABX
June 24, 2003
Hi

What does internal error 349 mean?

dmc -c -cpp -Ae -Ar -mn -D_WINDOWS -6 -a8 -Nc -c -H -HD..\..\d_mars -HO- -DWXMSW
 -D__WIN32__ -D__WIN95__ -D__WXDEBUG__  -I..\..\include -I..\..\lib\_sc -I..\..\
contrib\include -I..\../src/regex;..\../src/png;..\../src/jpeg;..\../src/zlib;..
\../src/tiff  ..\..\src\generic\gridsel.cpp -o..\..\src\generic\gridsel.obj
Internal error: type 349
--- errorlevel 1

This is with the 8.35 beta, downloaded earlier today

chris

June 24, 2003
It means you need to boil it down to the smallest possible source that reproduces the problem, and email it to me so I can fix it! -Walter

"chris elliott" <biol75@york.ac.uk> wrote in message news:bd9iml$1a4q$1@digitaldaemon.com...
> Hi
>
> What does internal error 349 mean?
>
> dmc -c -cpp -Ae -Ar -mn -D_WINDOWS -6 -a8 -Nc -c -H -HD..\..\d_mars -HO-
> -DWXMSW
>   -D__WIN32__ -D__WIN95__ -D__WXDEBUG__  -I..\..\include -I..\..\lib\_sc
> -I..\..\
> contrib\include
> -I..\../src/regex;..\../src/png;..\../src/jpeg;..\../src/zlib;..
> \../src/tiff
 ..\..\src\generic\gridsel.cpp -o..\..\src\generic\gridsel.obj
> Internal error: type 349
> --- errorlevel 1
>
> This is with the 8.35 beta, downloaded earlier today
>
> chris
>


July 08, 2003
In article <bd9s24$1mmg$1@digitaldaemon.com>, Walter says...
> > What does internal error 349 mean?
>
> It means you need to boil it down to the smallest possible source that reproduces the problem, and email it to me so I can fix it! -Walter

I can confirm this error with wxWindows and have bad news - I think that
smallest possible source is in this case whole wxWindows library. I tried
commenting different parts of code and whatever I commented before line of error
it compiled fine. And since code before line of error bases on definitions from
include files which are integral part of wxWindows I think it would be easier if
you could download wxWindows yourself, Walter. Go to the
http://wxwindows.sourceforge.net/snapshots/ . See docs/msw/install.txt for
details. Error is located in file src/generic/gridsel.cpp and my experiments
lead me to the line ~947 with call:
m_rowSelection.RemoveAt(n);
Tell me if there is anything I could do more in finding details, Walter.

ABX