diff options
author | nyamatongwe <devnull@localhost> | 2011-08-12 23:12:47 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-08-12 23:12:47 +1000 |
commit | 8ab9f0c333bb0c9ef944d91d940c516b65b0384e (patch) | |
tree | 14235395119706157303c6de665ab8442b54e609 /include | |
parent | 9d9345efae284b6aec8436e70bd97623cdfaa256 (diff) | |
download | scintilla-mirror-8ab9f0c333bb0c9ef944d91d940c516b65b0384e.tar.gz |
Added SCI_STYLESETSIZEFRACTIONAL, SCI_STYLESETWEIGHT, and SCI_SETTECHNOLOGY.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.iface | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index c5b58caae..08a77b605 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -487,7 +487,7 @@ val SC_FONT_SIZE_MULTIPLIER=100 # Set the size of characters of a style. Size is in points multiplied by 100. set void StyleSetSizeFractional=2061(int style, int caseForce) -# Get the weight of characters of a style in points multiplied by 100 +# Get the size of characters of a style in points multiplied by 100 get int StyleGetSizeFractional=2062(int style,) enu FontWeight=SC_WEIGHT_ @@ -495,7 +495,7 @@ val SC_WEIGHT_NORMAL=400 val SC_WEIGHT_SEMIBOLD=600 val SC_WEIGHT_BOLD=700 -# Get the weight of characters of a style. +# Set the weight of characters of a style. set void StyleSetWeight=2063(int style, int weight) # Get the weight of characters of a style. |