The probable reason is that:

Qt Code:
  1. Control control;
To copy to clipboard, switch view to plain text mode 
This is a declaration of an object "control" of class "Control".

Qt Code:
  1. Contol control();
To copy to clipboard, switch view to plain text mode 
This is a declaration of function called "control" returning an instance of class "Control".

Of course withouth calling show() you won't see anything regardless if you use "Control control;" or "Control control();".