Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2f96212125a0d3071de8b5ed112a4b7268df186e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Rename Refactoring</title>
<link rel="stylesheet" type="text/css" href="../help.css">
</head>
<body>
	<div role="main">
		<h1>Rename Refactoring</h1>
		<p>
			Use the <strong>Refactor &gt; Rename</strong> command to rename
			variables, functions, classes, methods, fields or typedefs.
		</p>
		<p>
			In an Editor window, select an item and run <strong>Refactor
				&gt; Rename...</strong> from the context menu.
		</p>
		<p>
			<img src="../images/cdt_inline_rename.png"
				alt="Example of inline renaming.">
		</p>
		<p>All uses of the name are highlighted, and updated in real time
			as you type. If you want to view the preview, or change any options,
			simply click on the triangle, or press the keyboard shortcut again.
			Otherwise, the options are the same as the last time a rename
			refactoring was done.</p>
		<p>When you hit Enter, all the item's declarations, definitions
			and references will be changed to use the new name. The standard Undo
			command can be used to revert the changes, if necessary.</p>
		<p>The options can be set using a dialog box, where you can
			specify the new name, and set various options affecting how hard to
			look for uses of the name that should be updated. From there you can
			also view the Preview of the changes that will be made by the
			refactoring.</p>
		<p>
			<img src="../images/cdt_rename_dialog.png" alt="Rename dialog box">
		</p>
		<p>Items to be renamed can also be selected from the Project
			Explorer window, although inline renaming is not available in this
			case, so the dialog box comes up immediately.</p>
		<p>
			<img src="../images/cdt_refactor.png"
				alt="Project Explorer context menu Refactor &gt; Rename command">
		</p>
		<p>
			<img src="../images/ngref.gif" alt="Related reference" width="143"
				height="21"> <br> <a
				href="../reference/cdt_u_m_refactor.htm">Refactor Menu actions</a>
		</p>
		<img src="../images/ng00_07.gif" alt="IBM Copyright Statement">
	</div>
</body>
</html>

Back to the top