diff options
author | Robert Loehning <robert.loehning@qt.io> | 2019-03-04 12:38:26 +0100 |
---|---|---|
committer | Robert Loehning <robert.loehning@qt.io> | 2019-03-05 09:40:54 +0000 |
commit | 90bc1c91daf2a17de1a5f0da223488583d8bf7dc (patch) | |
tree | 69145800790458226d717f988acdb0bd5d8b9993 /src/plugins/cpptools/cpptoolsplugin.cpp | |
parent | 8b7e8abe1b7333915819f7fbe099f6d0c441a0c6 (diff) | |
download | qt-creator-90bc1c91daf2a17de1a5f0da223488583d8bf7dc.tar.gz |
Fix quotation marks
Change-Id: I26bd4b9e965a5313569b6e0ef6f606da57b31bff
Reviewed-by: Filip Bucek <fbucek@atlas.cz>
Reviewed-by: Rainer Keller <Rainer.Keller@qt.io>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.cpp')
-rw-r--r-- | src/plugins/cpptools/cpptoolsplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp index 8068c27d0b..d2ca6d5d0b 100644 --- a/src/plugins/cpptools/cpptoolsplugin.cpp +++ b/src/plugins/cpptools/cpptoolsplugin.cpp @@ -211,7 +211,7 @@ bool CppToolsPlugin::initialize(const QStringList &arguments, QString *error) expander->registerVariable( "Cpp:PragmaOnce", - tr("Insert #pragma once instead of #ifndef include guards into header file"), + tr("Insert \"#pragma once\" instead of \"#ifndef\" include guards into header file"), [] { return usePragmaOnce() ? QString("true") : QString(); }); return true; |