aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llwindow
diff options
context:
space:
mode:
authorDavid Seikel2011-02-13 14:37:44 +1000
committerDavid Seikel2011-02-13 14:37:44 +1000
commite68da291f855b1d8dd0012af67f172a2244936c2 (patch)
tree3e53b84b4ffa856e152cf05b00d2f3db582dd66e /linden/indra/llwindow
parentRevert "Comment out the server tellinsg us what the search URL is, seems the ... (diff)
downloadmeta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.zip
meta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.tar.gz
meta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.tar.bz2
meta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.tar.xz
UNBRANDING! Conservativley remove references to "second life", replacing them with something generic.
Diffstat (limited to 'linden/indra/llwindow')
-rw-r--r--linden/indra/llwindow/llwindowmacosx.cpp16
-rw-r--r--linden/indra/llwindow/llwindowsdl.cpp13
-rw-r--r--linden/indra/llwindow/llwindowwin32.cpp14
3 files changed, 20 insertions, 23 deletions
diff --git a/linden/indra/llwindow/llwindowmacosx.cpp b/linden/indra/llwindow/llwindowmacosx.cpp
index 99daa4d..9cbc949 100644
--- a/linden/indra/llwindow/llwindowmacosx.cpp
+++ b/linden/indra/llwindow/llwindowmacosx.cpp
@@ -71,17 +71,17 @@ BOOL check_for_card(const char* RENDERER, const char* bad_card)
71 if (!strnicmp(RENDERER, bad_card, strlen(bad_card))) 71 if (!strnicmp(RENDERER, bad_card, strlen(bad_card)))
72 { 72 {
73 std::string buffer = llformat( 73 std::string buffer = llformat(
74 "Your video card appears to be a %s, which Second Life does not support.\n" 74 "Your video card appears to be a %s, which this viewer does not support.\n"
75 "\n" 75 "\n"
76 "Second Life requires a video card with 32 Mb of memory or more, as well as\n" 76 "This viewer requires a video card with 32 Mb of memory or more, as well as\n"
77 "multitexture support. We explicitly support nVidia GeForce 2 or better, \n" 77 "multitexture support. We explicitly support nVidia GeForce 2 or better, \n"
78 "and ATI Radeon 8500 or better.\n" 78 "and ATI Radeon 8500 or better.\n"
79 "\n" 79 "\n"
80 "If you own a supported card and continue to receive this message, try \n" 80 "If you own a supported card and continue to receive this message, try \n"
81 "updating to the latest video card drivers. Otherwise look in the\n" 81 "updating to the latest video card drivers. Otherwise look in the\n"
82 "secondlife.com support section or e-mail technical support\n" 82 "web site support section or e-mail technical support\n"
83 "\n" 83 "\n"
84 "You can try to run Second Life, but it will probably crash or run\n" 84 "You can try to run this viewer, but it will probably crash or run\n"
85 "very slowly. Try anyway?", 85 "very slowly. Try anyway?",
86 bad_card); 86 bad_card);
87 S32 button = OSMessageBox(buffer.c_str(), "Unsupported video card", OSMB_YESNO); 87 S32 button = OSMessageBox(buffer.c_str(), "Unsupported video card", OSMB_YESNO);
@@ -302,7 +302,7 @@ LLWindowMacOSX::LLWindowMacOSX(const std::string& title, const std::string& name
302 if (!gGLManager.initGL()) 302 if (!gGLManager.initGL())
303 { 303 {
304 setupFailure( 304 setupFailure(
305 "Second Life is unable to run because your video card drivers\n" 305 "This viewer is unable to run because your video card drivers\n"
306 "are out of date or unsupported. Please make sure you have\n" 306 "are out of date or unsupported. Please make sure you have\n"
307 "the latest video card drivers installed.\n" 307 "the latest video card drivers installed.\n"
308 "If you continue to receive this message, contact customer service.", 308 "If you continue to receive this message, contact customer service.",
@@ -748,10 +748,10 @@ BOOL LLWindowMacOSX::createContext(int x, int y, int width, int height, int bits
748 { 748 {
749 close(); 749 close();
750 setupFailure( 750 setupFailure(
751 "Second Life requires True Color (32-bit) to run in a window.\n" 751 "This viewer requires True Color (32-bit) to run in a window.\n"
752 "Please go to Control Panels -> Display -> Settings and\n" 752 "Please go to Control Panels -> Display -> Settings and\n"
753 "set the screen to 32-bit color.\n" 753 "set the screen to 32-bit color.\n"
754 "Alternately, if you choose to run fullscreen, Second Life\n" 754 "Alternately, if you choose to run fullscreen, this viewer\n"
755 "will automatically adjust the screen each time it runs.", 755 "will automatically adjust the screen each time it runs.",
756 "Error", 756 "Error",
757 OSMB_OK); 757 OSMB_OK);
@@ -762,7 +762,7 @@ BOOL LLWindowMacOSX::createContext(int x, int y, int width, int height, int bits
762 { 762 {
763 close(); 763 close();
764 setupFailure( 764 setupFailure(
765 "Second Life is unable to run because it can't get an 8 bit alpha\n" 765 "This viewer is unable to run because it can't get an 8 bit alpha\n"
766 "channel. Usually this is due to video card driver issues.\n" 766 "channel. Usually this is due to video card driver issues.\n"
767 "Please make sure you have the latest video card drivers installed.\n" 767 "Please make sure you have the latest video card drivers installed.\n"
768 "Also be sure your monitor is set to True Color (32-bit) in\n" 768 "Also be sure your monitor is set to True Color (32-bit) in\n"
diff --git a/linden/indra/llwindow/llwindowsdl.cpp b/linden/indra/llwindow/llwindowsdl.cpp
index 1933888..ff27a4b 100644
--- a/linden/indra/llwindow/llwindowsdl.cpp
+++ b/linden/indra/llwindow/llwindowsdl.cpp
@@ -698,16 +698,14 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B
698 close(); 698 close();
699 setupFailure( 699 setupFailure(
700#if LL_SOLARIS && defined(__sparc) 700#if LL_SOLARIS && defined(__sparc)
701 "Second Life requires at least 24-bit color on SPARC to run in a window.\n" 701 "This viewer requires at least 24-bit color on SPARC to run in a window.\n"
702 "Please use fbconfig to set your default color depth to 24 bits.\n" 702 "Please use fbconfig to set your default color depth to 24 bits.\n"
703 "You may also need to adjust the X11 setting in SMF. To do so use\n" 703 "You may also need to adjust the X11 setting in SMF. To do so use\n"
704 " 'svccfg -s svc:/application/x11/x11-server setprop options/default_depth=24'\n" 704 " 'svccfg -s svc:/application/x11/x11-server setprop options/default_depth=24'\n"
705#else 705#else
706 "Second Life requires True Color (32-bit) to run in a window.\n" 706 "This viewer requires True Color (32-bit) to run in a window.\n"
707 "Please go to Control Panels -> Display -> Settings and\n"
708 "set the screen to 32-bit color.\n"
709#endif 707#endif
710 "Alternately, if you choose to run fullscreen, Second Life\n" 708 "Alternately, if you choose to run fullscreen, this viewer\n"
711 "will automatically adjust the screen each time it runs.", 709 "will automatically adjust the screen each time it runs.",
712 "Error", 710 "Error",
713 OSMB_OK); 711 OSMB_OK);
@@ -719,11 +717,10 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B
719 { 717 {
720 close(); 718 close();
721 setupFailure( 719 setupFailure(
722 "Second Life is unable to run because it can't get an 8 bit alpha\n" 720 "This viewer is unable to run because it can't get an 8 bit alpha\n"
723 "channel. Usually this is due to video card driver issues.\n" 721 "channel. Usually this is due to video card driver issues.\n"
724 "Please make sure you have the latest video card drivers installed.\n" 722 "Please make sure you have the latest video card drivers installed.\n"
725 "Also be sure your monitor is set to True Color (32-bit) in\n" 723 "Also be sure your monitor is set to True Color (32-bit)n"
726 "Control Panels -> Display -> Settings.\n"
727 "If you continue to receive this message, contact customer service.", 724 "If you continue to receive this message, contact customer service.",
728 "Error", 725 "Error",
729 OSMB_OK); 726 OSMB_OK);
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp
index 7bc9a3b..3fdef30 100644
--- a/linden/indra/llwindow/llwindowwin32.cpp
+++ b/linden/indra/llwindow/llwindowwin32.cpp
@@ -1052,10 +1052,10 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1052 { 1052 {
1053 close(); 1053 close();
1054 OSMessageBox( 1054 OSMessageBox(
1055 "Second Life requires True Color (32-bit) to run in a window.\n" 1055 "This viewer requires True Color (32-bit) to run in a window.\n"
1056 "Please go to Control Panels -> Display -> Settings and\n" 1056 "Please go to Control Panels -> Display -> Settings and\n"
1057 "set the screen to 32-bit color.\n" 1057 "set the screen to 32-bit color.\n"
1058 "Alternately, if you choose to run fullscreen, Second Life\n" 1058 "Alternately, if you choose to run fullscreen, this viewer\n"
1059 "will automatically adjust the screen each time it runs.", 1059 "will automatically adjust the screen each time it runs.",
1060 "Error", 1060 "Error",
1061 OSMB_OK); 1061 OSMB_OK);
@@ -1066,7 +1066,7 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1066 { 1066 {
1067 close(); 1067 close();
1068 OSMessageBox( 1068 OSMessageBox(
1069 "Second Life is unable to run because it can't get an 8 bit alpha\n" 1069 "This viewer is unable to run because it can't get an 8 bit alpha\n"
1070 "channel. Usually this is due to video card driver issues.\n" 1070 "channel. Usually this is due to video card driver issues.\n"
1071 "Please make sure you have the latest video card drivers installed.\n" 1071 "Please make sure you have the latest video card drivers installed.\n"
1072 "Also be sure your monitor is set to True Color (32-bit) in\n" 1072 "Also be sure your monitor is set to True Color (32-bit) in\n"
@@ -1314,10 +1314,10 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1314 { 1314 {
1315 close(); 1315 close();
1316 OSMessageBox( 1316 OSMessageBox(
1317 "Second Life requires True Color (32-bit) to run in a window.\n" 1317 "This viewer requires True Color (32-bit) to run in a window.\n"
1318 "Please go to Control Panels -> Display -> Settings and\n" 1318 "Please go to Control Panels -> Display -> Settings and\n"
1319 "set the screen to 32-bit color.\n" 1319 "set the screen to 32-bit color.\n"
1320 "Alternately, if you choose to run fullscreen, Second Life\n" 1320 "Alternately, if you choose to run fullscreen, this viewer\n"
1321 "will automatically adjust the screen each time it runs.", 1321 "will automatically adjust the screen each time it runs.",
1322 "Error", 1322 "Error",
1323 OSMB_OK); 1323 OSMB_OK);
@@ -1328,7 +1328,7 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1328 { 1328 {
1329 close(); 1329 close();
1330 OSMessageBox( 1330 OSMessageBox(
1331 "Second Life is unable to run because it can't get an 8 bit alpha\n" 1331 "This viewer is unable to run because it can't get an 8 bit alpha\n"
1332 "channel. Usually this is due to video card driver issues.\n" 1332 "channel. Usually this is due to video card driver issues.\n"
1333 "Please make sure you have the latest video card drivers installed.\n" 1333 "Please make sure you have the latest video card drivers installed.\n"
1334 "Also be sure your monitor is set to True Color (32-bit) in\n" 1334 "Also be sure your monitor is set to True Color (32-bit) in\n"
@@ -1357,7 +1357,7 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1357 { 1357 {
1358 close(); 1358 close();
1359 OSMessageBox( 1359 OSMessageBox(
1360 "Second Life is unable to run because your video card drivers\n" 1360 "This viewer is unable to run because your video card drivers\n"
1361 "did not install properly, are out of date, or are for unsupported\n" 1361 "did not install properly, are out of date, or are for unsupported\n"
1362 "hardware. Please make sure you have the latest video card drivers\n" 1362 "hardware. Please make sure you have the latest video card drivers\n"
1363 "and even if you do have the latest, try reinstalling them.\n\n" 1363 "and even if you do have the latest, try reinstalling them.\n\n"