I am using Qt 4.7. At the start of my application I display a splash screen with general information about the program and related project. The information I want to display will occasionally need to change (version numbers and such). I would like to find a simple way of updating this text.

I started with just displaying the splash screen graphic without any version number information. This works fine. I then followed this example (http://qt-project.org/wiki/Custom_sp...reen_with_text) to display the screen with custom text at a certain position on top of the graphic. This also worked fine. The issue is when I want to have multiple sets of custom text. I am pretty sure that every time the screen is updated with a new line of text the previous line of text is lost in the update. (For example I try to display three different sets of text and I only see the third set of text.)

Any thoughts?

Thanks.