diff options
author | Eike Rathke <erack@redhat.com> | 2018-01-26 23:50:30 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-01-26 23:54:52 +0100 |
commit | 53a813c3d26932ac11b868c7bc27b50fe45d6f82 (patch) | |
tree | d32cabd3e9fd8d75213a416a5c3e50521efbe5a3 | |
parent | e4400f4c4e267f8528df3a7d5a09623c888bd10c (diff) |
Add blank lines for readability
Change-Id: I78b12b5d79b31c370154cc4880413cbae6760edc
-rw-r--r-- | sc/source/ui/dbgui/asciiopt.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/source/ui/dbgui/asciiopt.cxx b/sc/source/ui/dbgui/asciiopt.cxx index d699b4ea3675..d8ea57518e93 100644 --- a/sc/source/ui/dbgui/asciiopt.cxx +++ b/sc/source/ui/dbgui/asciiopt.cxx @@ -194,7 +194,8 @@ void ScAsciiOptions::ReadFromString( const OUString& rString ) bSaveAsShown = rString.getToken(0, ',', nPos) == "true"; } else - bSaveAsShown = true; //default value + bSaveAsShown = true; // default value + // Token 9: used for "Save cell formulas" in export options if ( nPos >= 0 ) { @@ -202,6 +203,7 @@ void ScAsciiOptions::ReadFromString( const OUString& rString ) } else bSaveFormulas = false; + // Token 10: Boolean for Trim spaces. if (nPos >= 0) { |