diff --git a/src/plugins/coreplugin/editormanager/editorview.cpp b/src/plugins/coreplugin/editormanager/editorview.cpp
index 5cb4e43ff1b6559bce93e0aecac11fb1a7b617d1..743d2f728e61733199e895fbc65b7a828647a862 100644
--- a/src/plugins/coreplugin/editormanager/editorview.cpp
+++ b/src/plugins/coreplugin/editormanager/editorview.cpp
@@ -68,7 +68,7 @@ using namespace Core;
 using namespace Core::Internal;
 
 
-//================EditorView====================
+// ================EditorView====================
 
 EditorView::EditorView(OpenEditorsModel *model, QWidget *parent) :
     QWidget(parent),
diff --git a/src/plugins/cpaster/codepasterprotocol.cpp b/src/plugins/cpaster/codepasterprotocol.cpp
index 7661498717d9ed0e2ee4bef79c6c8480b99b0d5a..00eb1f7c11c5b351ead32ea1fa352a276ad959e6 100644
--- a/src/plugins/cpaster/codepasterprotocol.cpp
+++ b/src/plugins/cpaster/codepasterprotocol.cpp
@@ -67,9 +67,9 @@ bool CodePasterProtocol::isValidHostName(const QString& hostName)
     if (hostName.isEmpty()) {
         ICore::instance()->messageManager()->printToOutputPane(
 #ifdef Q_OS_MAC
-                       tr("No Server defined in the CodePaster preferences!"),
+                       tr("No Server defined in the CodePaster preferences."),
 #else
-                       tr("No Server defined in the CodePaster options!"),
+                       tr("No Server defined in the CodePaster options."),
 #endif
                        true /*error*/);
         ICore::instance()->messageManager()->showOutputPane();
diff --git a/src/plugins/projectexplorer/projectwelcomepagewidget.cpp b/src/plugins/projectexplorer/projectwelcomepagewidget.cpp
index c2c7c9d72fa7efc8313dd6bb8c16879265b6b4e9..41a737a64c5644e0ee36644624b77ddde7e6f3a5 100644
--- a/src/plugins/projectexplorer/projectwelcomepagewidget.cpp
+++ b/src/plugins/projectexplorer/projectwelcomepagewidget.cpp
@@ -125,7 +125,7 @@ void ProjectWelcomePageWidget::updateWelcomePage(const WelcomePageData &welcomeP
     if (welcomePageData.projectList.count() > 0) {
         foreach (const QStringPair &it, welcomePageData.projectList) {
             const QFileInfo fi(it.first);
-            QTreeWidgetItem *item = ui->projTreeWidget->addItem(it.second, it.first, fi.absolutePath());
+            ui->projTreeWidget->addItem(it.second, it.first, fi.absolutePath());
         }
     } else {
         ui->projTreeWidget->hide();