summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorOcke Janssen [oj] <Ocke.Janssen@sun.com>2009-12-10 11:39:59 +0100
committerOcke Janssen [oj] <Ocke.Janssen@sun.com>2009-12-10 11:39:59 +0100
commit5005736eb6fca43acc38c0660f7beda4a0359bb7 (patch)
treebedf3f823dfd17cafdff7dd4ee73b4916d973375 /wizards
parentada13bed0d00ec3af944850148f9b3ed177dd101 (diff)
dba33d: merge
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/db/DBMetaData.java13
1 files changed, 2 insertions, 11 deletions
diff --git a/wizards/com/sun/star/wizards/db/DBMetaData.java b/wizards/com/sun/star/wizards/db/DBMetaData.java
index 5ac373b80ded..3cdfe9da3433 100644
--- a/wizards/com/sun/star/wizards/db/DBMetaData.java
+++ b/wizards/com/sun/star/wizards/db/DBMetaData.java
@@ -597,13 +597,8 @@ public class DBMetaData
public void getDataSourceInterfaces() throws Exception
{
-<<<<<<< local
- xCompleted = UnoRuntime.queryInterface( XCompletedConnection.class, m_dataSource );
- xDataSourcePropertySet = UnoRuntime.queryInterface( XPropertySet.class, m_dataSource );
-=======
- xCompleted = (XCompletedConnection) UnoRuntime.queryInterface(XCompletedConnection.class, getDataSource());
- xDataSourcePropertySet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, getDataSource());
->>>>>>> other
+ xCompleted = UnoRuntime.queryInterface(XCompletedConnection.class, getDataSource());
+ xDataSourcePropertySet = UnoRuntime.queryInterface(XPropertySet.class, getDataSource());
bPasswordIsRequired = ((Boolean) xDataSourcePropertySet.getPropertyValue("IsPasswordRequired")).booleanValue();
}
@@ -686,11 +681,7 @@ public class DBMetaData
private boolean getConnection(String _DataSourceName)
{
setDataSourceByName(_DataSourceName, true);
-<<<<<<< local
- return getConnection(m_dataSource);
-=======
return getConnection( getDataSource() );
->>>>>>> other
}
private boolean getConnection(com.sun.star.sdbc.XConnection _DBConnection)