summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-13 04:09:16 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-13 04:09:16 +0000
commit286a4141b552e05aa782b1fafa192426af2f42a2 (patch)
tree563ba9b7d257db43d67ee86d103576c93324bace
parent074aac21225594a28e8a03540859a11d91152a9f (diff)
downloadnuttx-286a4141b552e05aa782b1fafa192426af2f42a2.tar.gz
nuttx-286a4141b552e05aa782b1fafa192426af2f42a2.tar.bz2
nuttx-286a4141b552e05aa782b1fafa192426af2f42a2.zip
Fix typo
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3779 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/Documentation/NXGraphicsSubsystem.html4
-rw-r--r--nuttx/include/nuttx/nxfonts.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/Documentation/NXGraphicsSubsystem.html b/nuttx/Documentation/NXGraphicsSubsystem.html
index e37c3b9cf..065f00b7a 100644
--- a/nuttx/Documentation/NXGraphicsSubsystem.html
+++ b/nuttx/Documentation/NXGraphicsSubsystem.html
@@ -2347,7 +2347,7 @@ int nxtk_bitmaptoolbar(NXTKWINDOW hfwnd,
This structures provides the metrics for one glyph:
</p>
<ul><pre>
-struct nx_fontmetic_s
+struct nx_fontmetric_s
{
uint32_t stride : 2; /* Width of one font row in bytes */
uint32_t width : 6; /* Width of the font in bits */
@@ -2364,7 +2364,7 @@ struct nx_fontmetic_s
<ul><pre>
struct nx_fontbitmap_s
{
- struct nx_fontmetic_s metric; /* Character metrics */
+ struct nx_fontmetric_s metric; /* Character metrics */
FAR const uint8_t *bitmap; /* Pointer to the character bitmap */
};
</pre></ul>
diff --git a/nuttx/include/nuttx/nxfonts.h b/nuttx/include/nuttx/nxfonts.h
index e9c17362a..8bef4b00a 100644
--- a/nuttx/include/nuttx/nxfonts.h
+++ b/nuttx/include/nuttx/nxfonts.h
@@ -55,7 +55,7 @@
/* This structures provides the metrics for one glyph */
-struct nx_fontmetic_s
+struct nx_fontmetric_s
{
uint32_t stride : 2; /* Width of one font row in bytes */
uint32_t width : 6; /* Width of the font in bits */
@@ -69,7 +69,7 @@ struct nx_fontmetic_s
struct nx_fontbitmap_s
{
- struct nx_fontmetic_s metric; /* Character metrics */
+ struct nx_fontmetric_s metric; /* Character metrics */
FAR const uint8_t *bitmap; /* Pointer to the character bitmap */
};