diff options
author | David Seikel | 2011-05-02 22:17:02 +1000 |
---|---|---|
committer | David Seikel | 2011-05-02 22:17:02 +1000 |
commit | aea9fc8858b6f0a1cff12e662bf1cfc3239feee0 (patch) | |
tree | 311db31647af612f0828813b4b03fe4f5aebb540 /linden | |
parent | Default to showing the grid manager on startup. (diff) | |
download | meta-impy-aea9fc8858b6f0a1cff12e662bf1cfc3239feee0.zip meta-impy-aea9fc8858b6f0a1cff12e662bf1cfc3239feee0.tar.gz meta-impy-aea9fc8858b6f0a1cff12e662bf1cfc3239feee0.tar.bz2 meta-impy-aea9fc8858b6f0a1cff12e662bf1cfc3239feee0.tar.xz |
Revert "Update the grid manager to load grids from our meta7 server. Set the default grid to meta7."
This reverts commit 92d51b498d83e7ab917d53a47b566707adc088bf.
We are no longer a meta 7 specific viewer.
Diffstat (limited to 'linden')
-rw-r--r-- | linden/indra/newview/app_settings/settings.xml | 4 | ||||
-rw-r--r-- | linden/indra/newview/hippogridmanager.cpp | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/linden/indra/newview/app_settings/settings.xml b/linden/indra/newview/app_settings/settings.xml index b1d5725..40beede 100644 --- a/linden/indra/newview/app_settings/settings.xml +++ b/linden/indra/newview/app_settings/settings.xml | |||
@@ -634,7 +634,7 @@ | |||
634 | <key>Type</key> | 634 | <key>Type</key> |
635 | <string>String</string> | 635 | <string>String</string> |
636 | <key>Value</key> | 636 | <key>Value</key> |
637 | <string>http://www.meta7.com/grids.xml</string> | 637 | <string>http://imprudenceviewer.org/app/grids/</string> |
638 | </map> | 638 | </map> |
639 | <key>GoAction</key> | 639 | <key>GoAction</key> |
640 | <map> | 640 | <map> |
@@ -1476,7 +1476,7 @@ | |||
1476 | <key>Type</key> | 1476 | <key>Type</key> |
1477 | <string>String</string> | 1477 | <string>String</string> |
1478 | <key>Value</key> | 1478 | <key>Value</key> |
1479 | <string>meta7</string> | 1479 | <string>osgrid</string> |
1480 | </map> | 1480 | </map> |
1481 | <key>KeepAppearance</key> | 1481 | <key>KeepAppearance</key> |
1482 | <map> | 1482 | <map> |
diff --git a/linden/indra/newview/hippogridmanager.cpp b/linden/indra/newview/hippogridmanager.cpp index 6f28d87..78539f8 100644 --- a/linden/indra/newview/hippogridmanager.cpp +++ b/linden/indra/newview/hippogridmanager.cpp | |||
@@ -707,8 +707,6 @@ void HippoGridManager::deleteGrid(const std::string& grid) | |||
707 | 707 | ||
708 | void HippoGridManager::setDefaultGrid(const std::string& grid) | 708 | void HippoGridManager::setDefaultGrid(const std::string& grid) |
709 | { | 709 | { |
710 | return; | ||
711 | /* Prevent setting the default grid to anything but meta7 (except by editing the settings file). | ||
712 | GridIterator it = mGridInfo.find(grid); | 710 | GridIterator it = mGridInfo.find(grid); |
713 | if (it != mGridInfo.end()) | 711 | if (it != mGridInfo.end()) |
714 | { | 712 | { |
@@ -726,7 +724,6 @@ void HippoGridManager::setDefaultGrid(const std::string& grid) | |||
726 | { | 724 | { |
727 | mDefaultGrid = ""; | 725 | mDefaultGrid = ""; |
728 | } | 726 | } |
729 | */ | ||
730 | } | 727 | } |
731 | 728 | ||
732 | 729 | ||