Fix for hyphenations convertation to manual
This commit is contained in:
parent
ff35128df4
commit
13d70679cc
3 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Hyphenations" script:language="StarBasic">Private Sub markHyph4
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Hyphenations" script:language="StarBasic">Private Sub markHyph
|
||||
End sub
|
||||
|
||||
Private Sub convertHyphInDoc()
|
||||
|
@ -380,6 +380,10 @@ Private Function needHyphen(before As String, after As String,lineLength As Inte
|
|||
needHyphen = false
|
||||
Case "/"
|
||||
needHyphen = false
|
||||
Case "?"
|
||||
needHyphen = false
|
||||
Case "!"
|
||||
needHyphen = false
|
||||
End Select
|
||||
Select Case after
|
||||
Case " "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue