diff options
author | Krisztian Pinter <pin.terminator@gmail.com> | 2013-03-22 21:08:31 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-03-25 13:08:52 +0000 |
commit | eec2eb05a22966de319ecf370b0c880d7b83a79a (patch) | |
tree | bc0a1dfc7491f77550d6e9a52aeab06e3d5f5cfc /idl/inc | |
parent | 56a52889e65a17e324fc10cf341690385f5a9dd9 (diff) |
fdo#39445 writing out tools/fsys.hxx (idl)
Removed uses of fsys from database.cxx, command.cxx, module.cxx, svidl.cxx.
Also removed a lot of cruft from svidl.cxx and command.hxx; unused variables
and code relating to them, eg. variables aCxxFile, aHxxFile, aSrcFile, aODLFile.
Changed some Strings to OUStrings in svidl.cxx and command.hxx.
Change-Id: I708284f70435c8f65cdcfc954af43976e28b8c9d
Reviewed-on: https://gerrit.libreoffice.org/2935
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
Diffstat (limited to 'idl/inc')
-rw-r--r-- | idl/inc/command.hxx | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/idl/inc/command.hxx b/idl/inc/command.hxx index 5ca38dbc1d66..b77ab2fcb9c7 100644 --- a/idl/inc/command.hxx +++ b/idl/inc/command.hxx @@ -30,25 +30,18 @@ typedef ::std::vector< rtl::OString* > ByteStringList; class SvCommand { public: - String aDataBaseFile; + OUString aDataBaseFile; StringList aInFileList; - String aListFile; - String aSlotMapFile; - String aSfxItemFile; - String aODLFile; - String aCallingFile; - String aCxxFile; - String aHxxFile; - String aSrcFile; + OUString aListFile; + OUString aSlotMapFile; + OUString aSfxItemFile; String aPath; - String aCHeaderFile; - String aCSourceFile; String aTargetFile; - String aHelpIdFile; - String aCSVFile; - String aExportFile; - String aDocuFile; - ::rtl::OUString m_DepFile; + OUString aHelpIdFile; + OUString aCSVFile; + OUString aExportFile; + OUString aDocuFile; + OUString m_DepFile; sal_uInt32 nVerbosity; sal_uInt32 nFlags; |