[Libreoffice-commits] core.git: odk/examples
Stephan Bergmann
sbergman at redhat.com
Tue Apr 28 09:29:22 PDT 2015
odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx | 2 +-
odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx | 2 +-
odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 6f6446081ca71fe8a7aa34ccff2f3bbfa424d115
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Apr 28 18:28:40 2015 +0200
Revert erroneous replacements
Change-Id: I5dbde1fe4eb406b9fc54d803fc912072000c650d
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
index 2c535c9..0530fed 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
@@ -318,7 +318,7 @@ void SAL_CALL OConnection::close( ) throw(SQLException, RuntimeException)
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
}
- disposeOnce();
+ dispose();
}
// XWarningsSupplier
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
index ece9cea..40582fc 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
@@ -410,7 +410,7 @@ void SAL_CALL OResultSet::close( ) throw(SQLException, RuntimeException)
checkDisposed(OResultSet_BASE::rBHelper.bDisposed);
}
- disposeOnce();
+ dispose();
}
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
index 57ac764..bc84cc4 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
@@ -133,7 +133,7 @@ void SAL_CALL OStatement_Base::close( ) throw(SQLException, RuntimeException)
checkDisposed(OStatement_BASE::rBHelper.bDisposed);
}
- disposeOnce();
+ dispose();
}
More information about the Libreoffice-commits
mailing list