diff options
author | Ocke Janssen <oj@openoffice.org> | 2011-03-08 15:41:52 +0100 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2011-03-08 15:41:52 +0100 |
commit | 7bd65500828eec5062bfa74e9988771ccc0f797e (patch) | |
tree | 03c2e4235a5a06d271e1bb7219a6add71918ebf7 /connectivity | |
parent | 63f0a7dccf1ca260f0d0bba74e89aa46b38489ea (diff) |
dba34d: #i117276# mid for driver doesn't be static
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/jdbc/JConnection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/jdbc/JConnection.cxx b/connectivity/source/drivers/jdbc/JConnection.cxx index f61dc9287649..d17ad87d5e37 100644 --- a/connectivity/source/drivers/jdbc/JConnection.cxx +++ b/connectivity/source/drivers/jdbc/JConnection.cxx @@ -822,7 +822,7 @@ sal_Bool java_sql_Connection::construct(const ::rtl::OUString& url, static const char * cSignature = "(Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection;"; static const char * cMethodName = "connect"; // Java-Call absetzen - static jmethodID mID = NULL; + jmethodID mID = NULL; if ( !mID ) mID = t.pEnv->GetMethodID( m_Driver_theClass, cMethodName, cSignature ); if ( mID ) |