aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcutealien <cutealien@dfc29bdd-3216-0410-991c-e03cc46cb475>2022-12-22 14:56:44 +0000
committersfan5 <sfan5@live.de>2023-03-24 17:09:11 +0100
commit9c2c91776eb067b505490df6d447bdd636ce0df6 (patch)
treea9a3a913237d94e03bc4ef35442cf088b4fe2fc4
parent6f3435f349e778af21f172d9c954e7cdb44efe7c (diff)
downloadirrlicht-9c2c91776eb067b505490df6d447bdd636ce0df6.tar.xz
Fix spelling of enums in header comments
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6445 dfc29bdd-3216-0410-991c-e03cc46cb475
-rw-r--r--include/IGUIComboBox.h4
-rw-r--r--include/IGUIStaticText.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/IGUIComboBox.h b/include/IGUIComboBox.h
index 8d23834..4a7eda7 100644
--- a/include/IGUIComboBox.h
+++ b/include/IGUIComboBox.h
@@ -54,9 +54,9 @@ namespace gui
//! Sets text justification of the text area
/** \param horizontal: EGUIA_UPPERLEFT for left justified (default),
- EGUIA_LOWEERRIGHT for right justified, or EGUIA_CENTER for centered text.
+ EGUIA_LOWERRIGHT for right justified, or EGUIA_CENTER for centered text.
\param vertical: EGUIA_UPPERLEFT to align with top edge,
- EGUIA_LOWEERRIGHT for bottom edge, or EGUIA_CENTER for centered text (default). */
+ EGUIA_LOWERRIGHT for bottom edge, or EGUIA_CENTER for centered text (default). */
virtual void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) = 0;
//! Set the maximal number of rows for the selection listbox
diff --git a/include/IGUIStaticText.h b/include/IGUIStaticText.h
index 33db281..5d4f9ec 100644
--- a/include/IGUIStaticText.h
+++ b/include/IGUIStaticText.h
@@ -88,9 +88,9 @@ namespace gui
//! Sets text justification mode
/** \param horizontal: EGUIA_UPPERLEFT for left justified (default),
- EGUIA_LOWEERRIGHT for right justified, or EGUIA_CENTER for centered text.
+ EGUIA_LOWERRIGHT for right justified, or EGUIA_CENTER for centered text.
\param vertical: EGUIA_UPPERLEFT to align with top edge (default),
- EGUIA_LOWEERRIGHT for bottom edge, or EGUIA_CENTER for centered text. */
+ EGUIA_LOWERRIGHT for bottom edge, or EGUIA_CENTER for centered text. */
virtual void setTextAlignment(EGUI_ALIGNMENT horizontal, EGUI_ALIGNMENT vertical) = 0;
//! Enables or disables word wrap for using the static text as multiline text control.