summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-05-25 13:16:05 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-05-25 13:29:35 -0400
commit9036eea41fae3cc317cb71a6924995a0221ea371 (patch)
tree0ab61e2a48d51e48019a56c6d6e804ac52ba45c0 /sc
parent9a7d3d47d9b4d57b0c7380eadb294add4245ba3a (diff)
Removed writer_Text_encoded type; merged it with generic_Text.
Change-Id: I95c04f954026047e48976451eb755340d005d773
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbaworkbooks.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbaworkbooks.cxx b/sc/source/ui/vba/vbaworkbooks.cxx
index 00461b120865..23649f5c5dfb 100644
--- a/sc/source/ui/vba/vbaworkbooks.cxx
+++ b/sc/source/ui/vba/vbaworkbooks.cxx
@@ -195,8 +195,7 @@ ScVbaWorkbooks::isTextFile( const rtl::OUString& sType )
// c) unknown
// returning true basically means treat this like a csv file
const static rtl::OUString txtType("generic_Text");
- const static rtl::OUString encodedTxtType( RTL_CONSTASCII_USTRINGPARAM("writer_Text_encoded" ) );
- return sType.equals( txtType ) || sType.isEmpty() || sType.equals( encodedTxtType );
+ return sType.equals( txtType ) || sType.isEmpty();
}
bool