summaryrefslogtreecommitdiff
path: root/sc/qa/unit/helper/qahelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/qa/unit/helper/qahelper.hxx')
-rw-r--r--sc/qa/unit/helper/qahelper.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sc/qa/unit/helper/qahelper.hxx b/sc/qa/unit/helper/qahelper.hxx
index bc9f3db5d891..aac73cf8238a 100644
--- a/sc/qa/unit/helper/qahelper.hxx
+++ b/sc/qa/unit/helper/qahelper.hxx
@@ -82,18 +82,18 @@ struct TestParam
{
struct RowData
{
- SCROW nStartRow;
- SCROW nEndRow;
- SCTAB nTab;
- int nExpectedHeight; // -1 for default height
- int nCheck; // currently only CHECK_OPTIMAL ( we could add CHECK_MANUAL etc.)
- bool bOptimal;
+ SCROW const nStartRow;
+ SCROW const nEndRow;
+ SCTAB const nTab;
+ int const nExpectedHeight; // -1 for default height
+ int const nCheck; // currently only CHECK_OPTIMAL ( we could add CHECK_MANUAL etc.)
+ bool const bOptimal;
};
const char* sTestDoc;
- int nImportType;
- int nExportType; // -1 for import test, otherwise this is an export test
- int nRowData;
- RowData* pData;
+ int const nImportType;
+ int const nExportType; // -1 for import test, otherwise this is an export test
+ int const nRowData;
+ RowData* const pData;
};
struct FileFormat {
@@ -174,7 +174,7 @@ class SCQAHELPER_DLLPUBLIC ScBootstrapFixture : public test::BootstrapFixture
{
static const FileFormat aFileFormats[];
protected:
- OUString m_aBaseString;
+ OUString const m_aBaseString;
ScDocShellRef load(
bool bReadWrite, const OUString& rURL, const OUString& rFilter, const OUString &rUserData,