diff options
| author | Christian Ehrlicher <[email protected]> | 2018-03-12 21:34:26 +0100 |
|---|---|---|
| committer | Christian Ehrlicher <[email protected]> | 2018-03-12 20:38:18 +0000 |
| commit | 1c98cb2b04ba07cda92133811c4fbfbf4637b0df (patch) | |
| tree | 84850cd9d03baf7f81c011266437bb831afd9bf9 /examples/widgets/tools/undo/main.cpp | |
| parent | 6dc1a52b4a3341e5474eab128161212f6d952513 (diff) | |
Examples: fix superfluous ';' in undo example
There was a superfluous ';' at the end of main. No compiler will
complain I guess but the examples should be syntactically correct.
Task-number: QTBUG-55128
Change-Id: I2ddc3041ed05106d04fb4f4ad74735c72c9ddb26
Reviewed-by: André Hartmann <[email protected]>
Diffstat (limited to 'examples/widgets/tools/undo/main.cpp')
| -rw-r--r-- | examples/widgets/tools/undo/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/tools/undo/main.cpp b/examples/widgets/tools/undo/main.cpp index eff44ca3e8d..a5ec1b1b834 100644 --- a/examples/widgets/tools/undo/main.cpp +++ b/examples/widgets/tools/undo/main.cpp @@ -62,4 +62,4 @@ int main(int argc, char **argv) win.show(); return app.exec(); -}; +} |
