Is using the "emit" keyword before a signal function necessary? I forgot to add it so some cases when I call a signal, but they still seem to work.
e.g.

Qt Code:
  1. mySignal();
To copy to clipboard, switch view to plain text mode 
instead of
Qt Code:
  1. emit mySignal();
To copy to clipboard, switch view to plain text mode 

I was wondering if there is any difference if I leave it out?