diff options
author | Melanie | 2010-08-30 02:10:11 +0100 |
---|---|---|
committer | Melanie | 2010-08-30 02:10:11 +0100 |
commit | eefb207c1bf51802bdf5491a15575347960fb798 (patch) | |
tree | b02514b77284d905c71a9692bfd14541f898c692 /OpenSim/Data/SQLite | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-eefb207c1bf51802bdf5491a15575347960fb798.zip opensim-SC_OLD-eefb207c1bf51802bdf5491a15575347960fb798.tar.gz opensim-SC_OLD-eefb207c1bf51802bdf5491a15575347960fb798.tar.bz2 opensim-SC_OLD-eefb207c1bf51802bdf5491a15575347960fb798.tar.xz |
Fix a casting operation to use ToString()
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index fe09077..8432e74 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -1764,7 +1764,7 @@ namespace OpenSim.Data.SQLite | |||
1764 | row["Dwell"] = land.Dwell; | 1764 | row["Dwell"] = land.Dwell; |
1765 | row["MediaType"] = land.MediaType; | 1765 | row["MediaType"] = land.MediaType; |
1766 | row["MediaDescription"] = land.MediaDescription; | 1766 | row["MediaDescription"] = land.MediaDescription; |
1767 | row["MediaSize"] = (string) land.MediaWidth + "," + (string) land.MediaHeight; | 1767 | row["MediaSize"] = land.MediaWidth.ToString() + "," + land.MediaHeight.ToString(); |
1768 | row["MediaLoop"] = land.MediaLoop.ToString(); | 1768 | row["MediaLoop"] = land.MediaLoop.ToString(); |
1769 | row["ObscureMusic"] = land.ObscureMusic.ToString(); | 1769 | row["ObscureMusic"] = land.ObscureMusic.ToString(); |
1770 | row["ObscureMedia"] = land.ObscureMedia.ToString(); | 1770 | row["ObscureMedia"] = land.ObscureMedia.ToString(); |