aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2020-10-07 12:19:04 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2020-10-07 12:54:25 +0000
commit1fcac114a330e93f1df4e2fab0206b35f6c776e9 (patch)
tree103e5d86a025ad98ee14878d2d9e288b33e63d70 /doc
parent38efee1598af024ec1ce53b6a9ef07fda7b48341 (diff)
Doc: Describe new refactoring actions (quick fixes)
Fix capitalization of action names. Task-number: QTCREATORBUG-24529 Change-Id: I021717bbae237dd293bdbd56d5e10407ee12f224 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'doc')
-rw-r--r--doc/qtcreator/src/editors/creator-code-refactoring.qdoc24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/qtcreator/src/editors/creator-code-refactoring.qdoc b/doc/qtcreator/src/editors/creator-code-refactoring.qdoc
index ab8145b5f7..2f65b3568f 100644
--- a/doc/qtcreator/src/editors/creator-code-refactoring.qdoc
+++ b/doc/qtcreator/src/editors/creator-code-refactoring.qdoc
@@ -508,6 +508,19 @@
\c {protected slot}, or \c {private slot}.
\li Function name
\row
+ \li Add Class Member
+ \li Adds a member declaration for the class member being
+ initialized if it is not yet declared. You must enter
+ the data type of the member.
+ \li Identifier
+ \row
+ \li Create Implementations for Member Functions
+ \li Creates implementations for all member functions in one go.
+ In the \uicontrol {Member Function Implementations} dialog,
+ you can specify whether the member functions are generated
+ inline or outside the class.
+ \li Function name
+ \row
\li Switch with Next/Previous Parameter
\li Moves a parameter down or up one position in a parameter list.
\li Parameter in the declaration or definition of a function
@@ -796,6 +809,17 @@
respected yet.
\li Stack Variable
\row
+ \li Remove \c {using namespace} and Adjust Type Names Accordingly
+ \li Remove occurrences of \c {using namespace} in the local scope
+ and adjust type names accordingly.
+ \li \c using directive
+ \row
+ \li Remove All Occurrences of \c {using namespace} in Global Scope
+ and Adjust Type Names Accordingly
+ \li Remove all occurrences of \c {using namespace} in the global
+ scope and adjust type names accordingly.
+ \li \c using directive
+ \row
\li Convert connect() to Qt 5 Style
\li Converts a Qt 4 QObject::connect() to Qt 5 style.
\li QObject::connect() (Qt 4 style)