forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -99,10 +99,10 @@ These prefixes are used in addition to current file name on Switch Header/Source
|
||||
<item row="7" column="1">
|
||||
<widget class="QCheckBox" name="headerPragmaOnceCheckBox">
|
||||
<property name="toolTip">
|
||||
<string>Uses #pragma once instead of #ifndef include guards.</string>
|
||||
<string>Uses "#pragma once" instead of "#ifndef" include guards.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use '#pragma once' instead of '#ifndef' guards</string>
|
||||
<string>Use "#pragma once" instead of "#ifndef" guards</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user