From 580a37b22cc9ea92c0446524db990a978363c6dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= <thorbjorn.lindeijer@nokia.com> Date: Wed, 3 Feb 2010 14:58:09 +0100 Subject: [PATCH] Don't insert a snippet for-loop when pressing Ctrl+H Universal helper kept around for comfort. --- src/plugins/texteditor/basetexteditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index 26dc1b054ae..f2d39357828 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -1381,8 +1381,8 @@ void BaseTextEditor::insertCodeSnippet(const QString &snippet) void BaseTextEditor::universalHelper() { - const QString snippet = QLatin1String("for ($initializer$; $condition$; $expresssion$) {\n$$\n}\n"); - insertCodeSnippet(snippet); + // Test function for development. Place your new fangled experiment here to + // give it proper scrutiny before pushing it onto others. } void BaseTextEditor::setTextCursor(const QTextCursor &cursor) -- GitLab