From e56e9f1c1a635bd205bfde9ff8120ad2e81274c0 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sun, 15 Jun 2008 13:42:03 -0400 Subject: Added doxygen documentation to source files. --- src/properties.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/properties.h') diff --git a/src/properties.h b/src/properties.h index 24f10507..0ea11a2e 100644 --- a/src/properties.h +++ b/src/properties.h @@ -8,6 +8,10 @@ #define sp(k, v) SSS(sci, SCI_SETPROPERTY, k, v) #define color(r, g, b) r | (g << 8) | (b << 16) +/** + * Sets the default properties for a Scintilla window. + * @param sci The Scintilla window to set default properties for. + */ void set_default_editor_properties(ScintillaObject *sci) { sp("lexer.lua.home", "/usr/share/textadept/lexers/"); sp("lexer.lua.script", "/usr/share/textadept/lexers/lexer.lua"); @@ -64,6 +68,11 @@ void set_default_editor_properties(ScintillaObject *sci) { SS(sci, SCI_SETCARETSTICKY, 0); } +/** + * Sets the default properties for a Scintilla document. + * @param sci The Scintilla window containing the document to set default + * properties for. + */ void set_default_buffer_properties(ScintillaObject *sci) { sp("fold", "1"); sp("fold.by.indentation", "1"); -- cgit v1.2.3