intl
intl

Reputation: 2773

wxWidgets GUI issue

I just updated wxWidgets from 2.8.12 to 2.9.4. I built all the libraries like before and compiled by program. There are a couple of issues that I'm getting.

1) I get this after compilation: enter image description here

2) When I click cancel, my GUI is greyed out like so: enter image description here

The grey bar on the top and bottom are toolbars that usually have a blue gradient as the background on Windows. Also, the buttons have a dark stroked border as well.

Just wondering if anyone has come across this? One thing of note, I'm using MSVC and am using the debug libraries in vc_lib. Everything seems to work well on 2.8.12 if I revert back. I would really appreciate some feedback.

3) 2.8.12 screenshot (normal): enter image description here

Upvotes: 0

Views: 195

Answers (1)

VZ.
VZ.

Reputation: 22678

The assert indicates a problem in your code: you're using more than one mode when creating wxListCtrl. You simply need to fix this.

The rest of the problem is less clear, perhaps you should show how does the same UI look when built with wxWidgets 2.8.

Upvotes: 3

Related Questions