diff options
author | Tobias Hunger <tobias.hunger@nokia.com> | 2010-06-10 13:12:12 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2010-06-10 13:28:14 +0200 |
commit | 5d5f647f3d9b7a28c605af41a23819b7a24a5814 (patch) | |
tree | b9e6ea37d8b717ad3c91b1d77f44249cb56693db /src/plugins/debugger/stackwindow.cpp | |
parent | 726c3345c4af3d253c46f56fb1a20e0078bd1b7c (diff) | |
download | qt-creator-5d5f647f3d9b7a28c605af41a23819b7a24a5814.tar.gz |
Fix preprocessor directives
* The standard says all preprocessor directives have to start
at column 0.
Diffstat (limited to 'src/plugins/debugger/stackwindow.cpp')
-rw-r--r-- | src/plugins/debugger/stackwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/stackwindow.cpp b/src/plugins/debugger/stackwindow.cpp index 74f37ad506..92791ffddf 100644 --- a/src/plugins/debugger/stackwindow.cpp +++ b/src/plugins/debugger/stackwindow.cpp @@ -172,9 +172,9 @@ void StackWindow::copyContentsToClipboard() str += '\n'; } QClipboard *clipboard = QApplication::clipboard(); - #ifdef Q_WS_X11 +# ifdef Q_WS_X11 clipboard->setText(str, QClipboard::Selection); - #endif +# endif clipboard->setText(str, QClipboard::Clipboard); } |