diff options
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs index bf188ee..6be205e 100644 --- a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs +++ b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs | |||
@@ -52,9 +52,9 @@ namespace OpenSim.Data.MySQL | |||
52 | return ret[0]; | 52 | return ret[0]; |
53 | } | 53 | } |
54 | 54 | ||
55 | public void Store(AgentPreferencesData data) | 55 | public override bool Store(AgentPreferencesData data) |
56 | { | 56 | { |
57 | base.Store(data); | 57 | return base.Store(data); |
58 | } | 58 | } |
59 | } | 59 | } |
60 | } | 60 | } |
diff --git a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs index c27087d..4c84724 100644 --- a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs | |||
@@ -52,9 +52,9 @@ namespace OpenSim.Data.PGSQL | |||
52 | return ret[0]; | 52 | return ret[0]; |
53 | } | 53 | } |
54 | 54 | ||
55 | public void Store(AgentPreferencesData data) | 55 | public override bool Store(AgentPreferencesData data) |
56 | { | 56 | { |
57 | base.Store(data); | 57 | return base.Store(data); |
58 | } | 58 | } |
59 | } | 59 | } |
60 | } | 60 | } |
diff --git a/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs b/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs index ea267ac..5bfcedb 100644 --- a/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs +++ b/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs | |||
@@ -56,9 +56,9 @@ namespace OpenSim.Data.SQLite | |||
56 | return ret[0]; | 56 | return ret[0]; |
57 | } | 57 | } |
58 | 58 | ||
59 | public void Store(AgentPreferencesData data) | 59 | public override bool Store(AgentPreferencesData data) |
60 | { | 60 | { |
61 | base.Store(data); | 61 | return base.Store(data); |
62 | } | 62 | } |
63 | } | 63 | } |
64 | } | 64 | } |