static and editing very rarely go together in one sentence.
Except when pointing out that static is static and can't be edited.

Qt Code:
  1. static int myStaticInt = 5;
  2. cout << "my static int =" << myStaticInt;
To copy to clipboard, switch view to plain text mode 
That's all you can do with a static variable.