summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-06-04 08:48:12 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-06-04 08:48:12 +0000
commit2c6f9bb97ebe8f270e29150e99d46dc4f8ff3bfb (patch)
tree85c347f46898097b72f21e5b4bfb5d9edc0cd973
parent149465394495a9d152ad20f1074d1330ecc6c08d (diff)
INTEGRATION: CWS l10nfix26 (1.14.8); FILE MERGED
2008/06/02 15:03:11 ihi 1.14.8.1: Better error message output
-rw-r--r--transex3/inc/xmlparse.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/transex3/inc/xmlparse.hxx b/transex3/inc/xmlparse.hxx
index 0926dfe80084..a497355d6201 100644
--- a/transex3/inc/xmlparse.hxx
+++ b/transex3/inc/xmlparse.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: xmlparse.hxx,v $
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
* This file is part of OpenOffice.org.
*
@@ -246,6 +246,7 @@ public:
/// returns file name
const String &GetName() { return sFileName; }
void SetName( const String &rFilename ) { sFileName = rFilename; }
+ void SetFullName( const String &rFullFilename ) { sFullName = rFullFilename; }
const std::vector<ByteString> getOrder(){ return order; }
protected:
@@ -259,6 +260,7 @@ protected:
// DATA
String sFileName;
+ String sFullName;
const ByteString ID,OLDREF,XML_LANG;
@@ -538,6 +540,7 @@ public:
/// parse a file, returns NULL on criticall errors
XMLFile *Execute(
+ const String &rFullFileName,
const String &rFileName, // the file name
XMLFile *pXMLFileIn // the XMLFile
);