diff options
author | Tim Jenssen <tim.jenssen@qt.io> | 2017-02-22 15:09:35 +0100 |
---|---|---|
committer | Tim Jenssen <tim.jenssen@qt.io> | 2017-02-22 16:25:09 +0000 |
commit | 2631ffabd5a7955a40b9779b0d52af64e3bd3a60 (patch) | |
tree | a030ea11d0d561b720d0e0d352b4a0fc728a6758 /src/plugins/cpaster/cpasterplugin.cpp | |
parent | 005ca71cac65b7c766d814b97b830e2af1c7aa53 (diff) | |
download | qt-creator-2631ffabd5a7955a40b9779b0d52af64e3bd3a60.tar.gz |
Remove spaces in initializer lists
Format initializer lists code style like.
Change-Id: Ib82c235e4ba7dc75ee96a7abc0c47eff7b0a9013
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/cpaster/cpasterplugin.cpp')
-rw-r--r-- | src/plugins/cpaster/cpasterplugin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/cpaster/cpasterplugin.cpp b/src/plugins/cpaster/cpasterplugin.cpp index ed9360b345..a9d18b0c4f 100644 --- a/src/plugins/cpaster/cpasterplugin.cpp +++ b/src/plugins/cpaster/cpasterplugin.cpp @@ -120,11 +120,11 @@ bool CodepasterPlugin::initialize(const QStringList &arguments, QString *errorMe addAutoReleasedObject(settingsPage); // Create the protocols and append them to the Settings - Protocol *protos[] = { new PasteBinDotComProtocol, - new PasteBinDotCaProtocol, - new KdePasteProtocol, - new FileShareProtocol - }; + Protocol *protos[] = {new PasteBinDotComProtocol, + new PasteBinDotCaProtocol, + new KdePasteProtocol, + new FileShareProtocol + }; const int count = sizeof(protos) / sizeof(Protocol *); for (int i = 0; i < count; ++i) { connect(protos[i], &Protocol::pasteDone, this, &CodepasterPlugin::finishPost); |