summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/tabledesign/TableFieldControl.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-05-04 07:51:01 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-05-04 07:51:01 +0000
commit9a700554b769d2e031ad3f737a072fa7851b6d40 (patch)
tree1cbeaff25fb53e44832be0deaf7ffad6a083d76b /dbaccess/source/ui/tabledesign/TableFieldControl.cxx
parentINTEGRATION: CWS dba203c (1.26.4); FILE MERGED (diff)
downloadcore-9a700554b769d2e031ad3f737a072fa7851b6d40.tar.gz
core-9a700554b769d2e031ad3f737a072fa7851b6d40.zip
INTEGRATION: CWS dba203c (1.9.110); FILE MERGED
2006/04/13 13:57:19 oj 1.9.110.1: hold TableRow now with a shared_ptr
Diffstat (limited to 'dbaccess/source/ui/tabledesign/TableFieldControl.cxx')
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldControl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/tabledesign/TableFieldControl.cxx b/dbaccess/source/ui/tabledesign/TableFieldControl.cxx
index 3d8a399494f9..7565c387a6b2 100644
--- a/dbaccess/source/ui/tabledesign/TableFieldControl.cxx
+++ b/dbaccess/source/ui/tabledesign/TableFieldControl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: TableFieldControl.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:41:26 $
+ * last change: $Author: rt $ $Date: 2006-05-04 08:51:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -96,7 +96,7 @@ sal_Bool OTableFieldControl::IsReadOnly()
bRead = sal_True;
else
{
- OTableRow* pCurRow = GetCtrl()->GetActRow();
+ ::boost::shared_ptr<OTableRow> pCurRow = GetCtrl()->GetActRow();
if( pCurRow )
bRead = pCurRow->IsReadOnly();
}