summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Forms/HsqlDatabase.java')
-rw-r--r--odk/examples/DevelopersGuide/Forms/HsqlDatabase.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java b/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java
index e349892d3ea9..5c15718706a7 100644
--- a/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java
+++ b/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java
@@ -37,14 +37,14 @@ import com.sun.star.util.CloseVetoException;
public class HsqlDatabase
{
- XComponentContext m_context;
+ private XComponentContext m_context;
// the URL of the temporary file used for the database document
- String m_databaseDocumentFile;
+ private String m_databaseDocumentFile;
// the database document
- XOfficeDatabaseDocument m_databaseDocument;
+ private XOfficeDatabaseDocument m_databaseDocument;
// the data source belonging to the database document
// the default connection
- XConnection m_connection;
+ private XConnection m_connection;
public HsqlDatabase( XComponentContext _context ) throws Exception