git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Unused variables removed
[stg.git]
/
projects
/
stargazer
/
plugins
/
store
/
firebird
/
firebird_store.cpp
diff --git
a/projects/stargazer/plugins/store/firebird/firebird_store.cpp
b/projects/stargazer/plugins/store/firebird/firebird_store.cpp
index d0918716b2cb5d7feb9981448c04205706497f58..3085981fc222ec6e82b9875c78f120d88b11522a 100644
(file)
--- a/
projects/stargazer/plugins/store/firebird/firebird_store.cpp
+++ b/
projects/stargazer/plugins/store/firebird/firebird_store.cpp
@@
-40,24
+40,25
@@
PLUGIN_CREATOR<FIREBIRD_STORE> frsc;
//-----------------------------------------------------------------------------
STORE * GetStore()
{
//-----------------------------------------------------------------------------
STORE * GetStore()
{
-return frsc.Get
Store
();
+return frsc.Get
Plugin
();
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
FIREBIRD_STORE::FIREBIRD_STORE()
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
FIREBIRD_STORE::FIREBIRD_STORE()
+ : version("firebird_store v.1.4"),
+ strError(),
+ db_server("localhost"),
+ db_database("/var/stg/stargazer.fdb"),
+ db_user("stg"),
+ db_password("123456"),
+ settings(),
+ db(),
+ mutex(),
+ til(IBPP::ilConcurrency),
+ tlr(IBPP::lrWait)
{
{
-db_server = "localhost";
-db_database = "/var/stg/stargazer.fdb";
-db_user = "stg";
-db_password = "123456";
-version = "firebird_store v.1.4";
pthread_mutex_init(&mutex, NULL);
pthread_mutex_init(&mutex, NULL);
-
-// Advanced settings defaults
-
-til = IBPP::ilConcurrency;
-tlr = IBPP::lrWait;
}
//-----------------------------------------------------------------------------
FIREBIRD_STORE::~FIREBIRD_STORE()
}
//-----------------------------------------------------------------------------
FIREBIRD_STORE::~FIREBIRD_STORE()