summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-09-07 11:49:47 +0200
committerEike Rathke <erack@redhat.com>2015-09-07 11:50:53 +0200
commit22bdebb622de39488221c9d7a1566f3810fb2f17 (patch)
tree76992b8640fc129970639eeebac76c6522e4e230 /sc
parent4e0a5cf0f929ae5fef7eda8057202ac29a8f3a77 (diff)
let's follow our pseudo-hungarian notation
Commit 6fb54d7bd3eb8efb2223c6a7250852fb6ad22b89 changed from pointer to reference but didn't adapt the variable name. Change-Id: If91c632d8fc41957ed3b542ed7bf19c376b56a82
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/dbdata.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/tool/dbdata.cxx b/sc/source/core/tool/dbdata.cxx
index 00b4db9a6516..ea59ae8b167e 100644
--- a/sc/source/core/tool/dbdata.cxx
+++ b/sc/source/core/tool/dbdata.cxx
@@ -654,9 +654,9 @@ void ScDBData::StartTableColumnNamesListener()
{
if (mpContainer && bHasHeader)
{
- ScDocument& pDoc = mpContainer->GetDocument();
- if (!pDoc.IsClipOrUndo())
- pDoc.StartListeningArea( GetHeaderArea(), false, this);
+ ScDocument& rDoc = mpContainer->GetDocument();
+ if (!rDoc.IsClipOrUndo())
+ rDoc.StartListeningArea( GetHeaderArea(), false, this);
}
}