summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkash Shetye <shetyeakash@gmail.com>2013-06-25 11:14:31 +0530
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-05 14:30:19 -0400
commit5ee29a4969d52118d083468db728b53f5a466c06 (patch)
treeeaa35e7024a94ad224294dd05620ba91c1e14029
parent28b5035479cee475353cf1e7736fd69c8d875314 (diff)
Fixes commit f502c0ea6826fc0e915d8d4c302fe978a4d43a58 that breaks the build.
Change-Id: Ib815dfb3679627c9d99ef747b7b0ef643b7e0cbb
-rw-r--r--sc/inc/dbdataformatting.hxx2
-rw-r--r--sc/source/core/tool/dbdataformatting.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/dbdataformatting.hxx b/sc/inc/dbdataformatting.hxx
index ef8d5fd2b4d2..50d62f5857a7 100644
--- a/sc/inc/dbdataformatting.hxx
+++ b/sc/inc/dbdataformatting.hxx
@@ -33,7 +33,7 @@ class SC_DLLPUBLIC ScDBDataFormatting
bool bBandedColumns;
public:
ScDBDataFormatting();
- ScDBDataFormatting(const OUString& rFirstRowStripeStyle, const OUString& rSecondRowStripeStyle, const OUString& rFirstColStripeStyle, const OUString& rSecondColStripeStyle, bool bBRows, bool bBCols);
+ ScDBDataFormatting(const OUString& rTableStyleName, const OUString& rFirstRowStripeStyle, const OUString& rSecondRowStripeStyle, const OUString& rFirstColStripeStyle, const OUString& rSecondColStripeStyle, bool bBRows, bool bBCols);
ScDBDataFormatting( const ScDBDataFormatting& rTableFormatData );
void SetTableStyleName( const OUString& rTableStyleName );
const OUString& GetTableStyleName();
diff --git a/sc/source/core/tool/dbdataformatting.cxx b/sc/source/core/tool/dbdataformatting.cxx
index fe6a8a2a9e10..24fde5e0f2d3 100644
--- a/sc/source/core/tool/dbdataformatting.cxx
+++ b/sc/source/core/tool/dbdataformatting.cxx
@@ -53,7 +53,7 @@ void ScDBDataFormatting::SetTableStyleName( const OUString& rTableStyleName )
const OUString& ScDBDataFormatting::GetTableStyleName()
{
- return maTbleStyleName;
+ return maTableStyleName;
}
void ScDBDataFormatting::SetBandedRows( bool bBRows )