
Originally Posted by
wenn32
pushbutton button = new pushbutton("Dont click me");
pushbutton button = new pushbutton("Dont click me");
To copy to clipboard, switch view to plain text mode
Better start with learning C++ first. It is an absolute must for using Qt.
It is either:
pushbutton *button = new pushbutton("...");
pushbutton *button = new pushbutton("...");
To copy to clipboard, switch view to plain text mode
or
pushbutton button("...");
pushbutton button("...");
To copy to clipboard, switch view to plain text mode
Bookmarks