From 6968e412eaa8716272509aeaeb9b26ca0d668024 Mon Sep 17 00:00:00 2001 From: gazer Date: Sun, 27 Mar 2016 19:42:30 +0300 Subject: [PATCH] doc fixes --- dub.json | 3 ++- src/dlangui/core/logger.d | 2 +- src/dlangui/dml/parser.d | 2 +- src/dlangui/graphics/fonts.d | 2 +- src/dlangui/widgets/editors.d | 4 ++-- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/dub.json b/dub.json index b5426202..810e4574 100644 --- a/dub.json +++ b/dub.json @@ -25,7 +25,8 @@ "views/res/i18n" ], - "-ddoxFilterArgs": ["--unittest-examples", "--min-protection=Protected", "--ex", "win32.", "--ex", "src.dlangui"], + "-ddoxFilterArgs": ["--unittest-examples", "--min-protection=Protected", "--ex", "win32.", + "--ex", "dimage.", "--ex", "fontconfig", "--ex", "src.dlangui"], "sourceFiles-windows": ["$PACKAGE_DIR/src/win_app.def"], diff --git a/src/dlangui/core/logger.d b/src/dlangui/core/logger.d index c371fd6e..bf05c14a 100644 --- a/src/dlangui/core/logger.d +++ b/src/dlangui/core/logger.d @@ -15,7 +15,7 @@ import dlangui.core.logger; // use stderror for logging setStderrLogger(); // set log level -setLogLevel(LogLeve.Debug); +setLogLevel(LogLevel.Debug); // usage: diff --git a/src/dlangui/dml/parser.d b/src/dlangui/dml/parser.d index eb5321fe..eb34b6fe 100644 --- a/src/dlangui/dml/parser.d +++ b/src/dlangui/dml/parser.d @@ -13,7 +13,7 @@ Widget layout = parseML(q{ TextLine { id: editor; text: "Some text to edit" } Button { id: btnOk; text: "Ok" } } -} +}); ---- diff --git a/src/dlangui/graphics/fonts.d b/src/dlangui/graphics/fonts.d index 7abd0f88..e021704d 100644 --- a/src/dlangui/graphics/fonts.d +++ b/src/dlangui/graphics/fonts.d @@ -354,7 +354,7 @@ class Font : RefCountedObject { * x = x coordinate to draw first character at * y = y coordinate to draw first character at * text = text string to draw - * colors = array of colors, colors[i] is color for character text[i] + * charProps = array of character properties, charProps[i] are properties for character text[i] * tabSize = tabulation size, in number of spaces * tabOffset = when string is drawn not from left position, use to move tab stops left/right * textFlags = set of TextFlag bit fields diff --git a/src/dlangui/widgets/editors.d b/src/dlangui/widgets/editors.d index 53512829..9dcb5b4a 100644 --- a/src/dlangui/widgets/editors.d +++ b/src/dlangui/widgets/editors.d @@ -676,12 +676,12 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction return this; } - /// when true, show modification marks for lines (whether line is unchanged/modified/modified_saved + /// when true, show modification marks for lines (whether line is unchanged/modified/modified_saved) @property bool showModificationMarks() { return _showModificationMarks; } - /// when true, show modification marks for lines (whether line is unchanged/modified/modified_saved + /// when true, show modification marks for lines (whether line is unchanged/modified/modified_saved) @property EditWidgetBase showModificationMarks(bool flg) { if (_showModificationMarks != flg) { _showModificationMarks = flg;