Quote Originally Posted by wenn32 View Post
Qt Code:
  1. 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:
Qt Code:
  1. pushbutton *button = new pushbutton("...");
To copy to clipboard, switch view to plain text mode 
or
Qt Code:
  1. pushbutton button("...");
To copy to clipboard, switch view to plain text mode