Remove surrounding quotes for RMB contexts. Update CHANGELOG. · epasveer/seer@30a8e8a (original) (raw)
`@@ -986,28 +986,28 @@ void SeerEditorWidgetSourceArea::showContextMenu (const QPoint& pos, const QPoin
`
986
986
` openExternalEditor->setEnabled(true);
`
987
987
` }
`
988
988
``
989
``
`-
addVariableLoggerExpressionAction = new QAction(QString(""%1"").arg(textCursor().selectedText()));
`
990
``
`-
addVariableLoggerAsteriskExpressionAction = new QAction(QString(""*%1"").arg(textCursor().selectedText()));
`
991
``
`-
addVariableLoggerAmpersandExpressionAction = new QAction(QString(""&&%1"").arg(textCursor().selectedText()));
`
992
``
`-
addVariableLoggerAsteriskAmpersandExpressionAction = new QAction(QString(""*&&%1"").arg(textCursor().selectedText()));
`
993
``
`-
addVariableLoggerObjcExpressionAction = new QAction(QString(""(objc)%1"").arg(textCursor().selectedText()));
`
994
``
`-
addVariableTrackerExpressionAction = new QAction(QString(""%1"").arg(textCursor().selectedText()));
`
995
``
`-
addVariableTrackerAsteriskExpressionAction = new QAction(QString(""*%1"").arg(textCursor().selectedText()));
`
996
``
`-
addVariableTrackerAmpersandExpressionAction = new QAction(QString(""&&%1"").arg(textCursor().selectedText()));
`
997
``
`-
addVariableTrackerAsteriskAmpersandExpressionAction = new QAction(QString(""*&&%1"").arg(textCursor().selectedText()));
`
998
``
`-
addVariableTrackerObjcExpressionAction = new QAction(QString(""(objc)%1"").arg(textCursor().selectedText()));
`
999
``
`-
addMemoryVisualizerAction = new QAction(QString(""%1"").arg(textCursor().selectedText()));
`
1000
``
`-
addMemoryAsteriskVisualizerAction = new QAction(QString(""*%1"").arg(textCursor().selectedText()));
`
1001
``
`-
addMemoryAmpersandVisualizerAction = new QAction(QString(""&&%1"").arg(textCursor().selectedText()));
`
1002
``
`-
addArrayVisualizerAction = new QAction(QString(""%1"").arg(textCursor().selectedText()));
`
1003
``
`-
addArrayAsteriskVisualizerAction = new QAction(QString(""*%1"").arg(textCursor().selectedText()));
`
1004
``
`-
addArrayAmpersandVisualizerAction = new QAction(QString(""&&%1"").arg(textCursor().selectedText()));
`
1005
``
`-
addMatrixVisualizerAction = new QAction(QString(""%1"").arg(textCursor().selectedText()));
`
1006
``
`-
addMatrixAsteriskVisualizerAction = new QAction(QString(""*%1"").arg(textCursor().selectedText()));
`
1007
``
`-
addMatrixAmpersandVisualizerAction = new QAction(QString(""&&%1"").arg(textCursor().selectedText()));
`
1008
``
`-
addStructVisualizerAction = new QAction(QString(""%1"").arg(textCursor().selectedText()));
`
1009
``
`-
addStructAsteriskVisualizerAction = new QAction(QString(""*%1"").arg(textCursor().selectedText()));
`
1010
``
`-
addStructAmpersandVisualizerAction = new QAction(QString(""&&%1"").arg(textCursor().selectedText()));
`
``
989
`+
addVariableLoggerExpressionAction = new QAction(QString("%1").arg(textCursor().selectedText()));
`
``
990
`+
addVariableLoggerAsteriskExpressionAction = new QAction(QString("*%1").arg(textCursor().selectedText()));
`
``
991
`+
addVariableLoggerAmpersandExpressionAction = new QAction(QString("&&%1").arg(textCursor().selectedText()));
`
``
992
`+
addVariableLoggerAsteriskAmpersandExpressionAction = new QAction(QString("*&&%1").arg(textCursor().selectedText()));
`
``
993
`+
addVariableLoggerObjcExpressionAction = new QAction(QString("(objc)%1").arg(textCursor().selectedText()));
`
``
994
`+
addVariableTrackerExpressionAction = new QAction(QString("%1").arg(textCursor().selectedText()));
`
``
995
`+
addVariableTrackerAsteriskExpressionAction = new QAction(QString("*%1").arg(textCursor().selectedText()));
`
``
996
`+
addVariableTrackerAmpersandExpressionAction = new QAction(QString("&&%1").arg(textCursor().selectedText()));
`
``
997
`+
addVariableTrackerAsteriskAmpersandExpressionAction = new QAction(QString("*&&%1").arg(textCursor().selectedText()));
`
``
998
`+
addVariableTrackerObjcExpressionAction = new QAction(QString("(objc)%1").arg(textCursor().selectedText()));
`
``
999
`+
addMemoryVisualizerAction = new QAction(QString("%1").arg(textCursor().selectedText()));
`
``
1000
`+
addMemoryAsteriskVisualizerAction = new QAction(QString("*%1").arg(textCursor().selectedText()));
`
``
1001
`+
addMemoryAmpersandVisualizerAction = new QAction(QString("&&%1").arg(textCursor().selectedText()));
`
``
1002
`+
addArrayVisualizerAction = new QAction(QString("%1").arg(textCursor().selectedText()));
`
``
1003
`+
addArrayAsteriskVisualizerAction = new QAction(QString("*%1").arg(textCursor().selectedText()));
`
``
1004
`+
addArrayAmpersandVisualizerAction = new QAction(QString("&&%1").arg(textCursor().selectedText()));
`
``
1005
`+
addMatrixVisualizerAction = new QAction(QString("%1").arg(textCursor().selectedText()));
`
``
1006
`+
addMatrixAsteriskVisualizerAction = new QAction(QString("*%1").arg(textCursor().selectedText()));
`
``
1007
`+
addMatrixAmpersandVisualizerAction = new QAction(QString("&&%1").arg(textCursor().selectedText()));
`
``
1008
`+
addStructVisualizerAction = new QAction(QString("%1").arg(textCursor().selectedText()));
`
``
1009
`+
addStructAsteriskVisualizerAction = new QAction(QString("*%1").arg(textCursor().selectedText()));
`
``
1010
`+
addStructAmpersandVisualizerAction = new QAction(QString("&&%1").arg(textCursor().selectedText()));
`
1011
1011
``
1012
1012
` QMenu menu("Breakpoints", this);
`
1013
1013
` menu.setTitle("Breakpoints");
`