diff options
| author | Alex Parker <rockbox@aeparker.com> | 2009-06-28 13:02:38 +0000 |
|---|---|---|
| committer | Alex Parker <rockbox@aeparker.com> | 2009-06-28 13:02:38 +0000 |
| commit | 8e4098bd663c18ea800f47f88e657206d23a76ae (patch) | |
| tree | e461b972607f7e2defbd8608210b9805eba8ad3a | |
| parent | ce5dc3ab965740e3e71e35ff96a7e7b7fbe8fde1 (diff) | |
| download | rockbox-8e4098bd663c18ea800f47f88e657206d23a76ae.zip rockbox-8e4098bd663c18ea800f47f88e657206d23a76ae.tar.gz rockbox-8e4098bd663c18ea800f47f88e657206d23a76ae.tar.bz2 rockbox-8e4098bd663c18ea800f47f88e657206d23a76ae.tar.xz | |
Change manual remote keymap define to HAVE_REMOTE_KEYMAP to be more consistent with other edefs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21540 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | manual/preamble.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/preamble.tex b/manual/preamble.tex index d3b2f67..9d929e7 100644 --- a/manual/preamble.tex +++ b/manual/preamble.tex @@ -302,7 +302,7 @@ % command to set the default table heading for button lists -\newcommand{\btnhead}{\textbf{Key} \opt{remote_keymap}{% +\newcommand{\btnhead}{\textbf{Key} \opt{HAVE_REMOTE_KEYMAP}{% & \textbf{Remote Key}} & \textbf{Action} \\\midrule} % environment intended to be used with button maps % usage: \begin{btnmap}{caption}{label} Button & ButtonAction \\ \end{btnmap} @@ -312,7 +312,7 @@ % Cheers for the usenet helping me building this up :) % tabularx is set to be either two or three columns wide depending on whether -% remote_keymap is defined in the platform file for the target in question. +% HAVE_REMOTE_KEYMAP is defined in the platform file for the target in question. % If it is, then every button table has three columns of the form % Main Unit Key & Remote Key & Description \\ @@ -326,11 +326,11 @@ \endcenter% } \center - \opt{remote_keymap}{ + \opt{HAVE_REMOTE_KEYMAP}{ % here is the table width defined for 3 columns \tabularx{.9\textwidth}{>{\raggedright\arraybackslash}p{.2\textwidth}>{\raggedright\arraybackslash}p{.2\textwidth}X}\toprule } - \nopt{remote_keymap}{ + \nopt{HAVE_REMOTE_KEYMAP}{ % here is the table width defined for 2 columns \tabularx{.75\textwidth}{>{\raggedright\arraybackslash}p{.22\textwidth}X}\toprule } |