summaryrefslogtreecommitdiff
path: root/oox/inc/oox/xls
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-05 16:59:14 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-05 16:59:14 +0000
commit2b2446a21ced3a759e77d31abfb570e193574c5b (patch)
tree77dba7f65a73221fa6d22ffa69156af7a5c0abc7 /oox/inc/oox/xls
parentd2ebe24b6a8aabd3913e3f4a88953bd8966dc0f1 (diff)
INTEGRATION: CWS xmlfilter03_DEV300 (1.2.4); FILE MERGED
2008/02/01 09:54:44 dr 1.2.4.2: addShape() code cleanup, started xlsx drawing import 2008/01/24 14:57:20 dr 1.2.4.1: OOBIN additions, BIFF string handling
Diffstat (limited to 'oox/inc/oox/xls')
-rw-r--r--oox/inc/oox/xls/addressconverter.hxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/oox/inc/oox/xls/addressconverter.hxx b/oox/inc/oox/xls/addressconverter.hxx
index fed790a7dd10..62aac88dae81 100644
--- a/oox/inc/oox/xls/addressconverter.hxx
+++ b/oox/inc/oox/xls/addressconverter.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: addressconverter.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2008-01-17 08:05:48 $
+ * last change: $Author: kz $ $Date: 2008-03-05 17:59:14 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -280,16 +280,18 @@ public:
documents, e.g. from EXTERNSHEET, SUPBOOK, or DCONREF records.
@param orClassName (out-parameter) DDE server name or OLE class name.
- @param orTargetUrl (out-parameter) Traget URL, DDE topic or OLE object name.
+ @param orTargetUrl (out-parameter) Target URL, DDE topic or OLE object name.
@param orSheetName (out-parameter) Sheet name in target document.
+ @param orbSameSheet (out-parameter) True = target for special '!A1' syntax.
@param rBiffEncoded Encoded name of the external link target.
- @return true = Parsed string was valid, returned strings can be used.
+ @return true = Parsed string was valid, return values can be used.
*/
bool parseBiffTargetUrl(
::rtl::OUString& orClassName,
::rtl::OUString& orTargetUrl,
::rtl::OUString& orSheetName,
+ bool& orbSameSheet,
const ::rtl::OUString& rBiffTargetUrl );
// ------------------------------------------------------------------------
@@ -619,7 +621,8 @@ private:
void initializeEncodedUrl(
sal_Unicode cUrlThisWorkbook, sal_Unicode cUrlExternal,
- sal_Unicode cUrlThisSheet, sal_Unicode cUrlInternal );
+ sal_Unicode cUrlThisSheet, sal_Unicode cUrlInternal,
+ sal_Unicode cUrlSameSheet );
private:
::com::sun::star::table::CellAddress maMaxApiPos; /// Maximum valid cell address in Calc.
@@ -629,6 +632,7 @@ private:
sal_Unicode mcUrlExternal; /// Control character: Link to external workbook/sheet.
sal_Unicode mcUrlThisSheet; /// Control character: Link to current sheet.
sal_Unicode mcUrlInternal; /// Control character: Link to internal sheet.
+ sal_Unicode mcUrlSameSheet; /// Control character: Link to same sheet (special '!A1' syntax).
bool mbColOverflow; /// Flag for "columns overflow".
bool mbRowOverflow; /// Flag for "rows overflow".
bool mbTabOverflow; /// Flag for "tables overflow".