This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

compile error on qt2-beta1 corrected


While compiling the QT2 beta 1, I recieved this error:

 widgets/qlistview.cpp: In method `void QListView::keyPressEvent(class
QKeyEvent
> *)':
> widgets/qlistview.cpp:2921: Internal compiler error.
> widgets/qlistview.cpp:2921: Please submit a full bug report to
`egcs-bugs@egcs.cygnus.com'.
> widgets/qlistview.cpp:2921: See
<URL:http://egcs.cygnus.com/faq.html#bugreport>
> for details.
> cpp: output pipe has been closed
> make[1]: *** [widgets/qlistview.o] Error 1
> make[1]: Leaving directory               

The line that seemed to generate it was this:
input += (char)tolower( e->ascii() );

Which I changed to:
input = input + (char)tolower( e->ascii() );


And the compile then continued perfectly.  Strange.  Thought I'd let you
know.

Jason Pincin
jpincin@linuxkb.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]