OPEN-209: Corrected all instances of trigraphs in the code.
Trigraphs can cause some real special headaches. The only part that's annoying is the comment in newview/llimview.cpp where there's an unfortunate collision of a trigraph sequence with a character sequence that could be displayed by the viewer. Thankfully, it's only a comment!master
parent
cb91708332
commit
e9116575bf
|
|
@ -330,6 +330,7 @@ Cron Stardust
|
|||
VWR-25120
|
||||
STORM-1075
|
||||
STORM-1919
|
||||
OPEN-209
|
||||
Cypren Christenson
|
||||
STORM-417
|
||||
Dante Tucker
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ BOOL LLVFile::read(U8 *buffer, S32 bytes, BOOL async, F32 priority)
|
|||
// We can't do a read while there are pending async writes
|
||||
waitForLock(VFSLOCK_APPEND);
|
||||
|
||||
// *FIX: (???)
|
||||
// *FIX: (?)
|
||||
if (async)
|
||||
{
|
||||
mHandle = sVFSThread->read(mVFS, mFileID, mFileType, buffer, mPosition, bytes, threadPri());
|
||||
|
|
|
|||
|
|
@ -51,9 +51,9 @@ namespace tut
|
|||
void test_chop_662(void)
|
||||
{
|
||||
// Check a selection of bad group names from the crash reports
|
||||
LLDirIterator iter(".","+bad-group-name]+??-??.*");
|
||||
LLDirIterator iter1(".","))--@---bad-group-name2((??-??.*\\.txt");
|
||||
LLDirIterator iter2(".","__^v--x)Cuide d sua vida(x--v^__??-??.*");
|
||||
LLDirIterator iter(".","+bad-group-name]+?\?-??.*");
|
||||
LLDirIterator iter1(".","))--@---bad-group-name2((?\?-??.*\\.txt");
|
||||
LLDirIterator iter2(".","__^v--x)Cuide d sua vida(x--v^__?\?-??.*");
|
||||
}
|
||||
|
||||
template<> template<>
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ S32 OSMessageBox(const std::string& text, const std::string& caption, U32 type)
|
|||
}
|
||||
|
||||
S32 result = 0;
|
||||
#if LL_MESA_HEADLESS // !!! *FIX: (???)
|
||||
#if LL_MESA_HEADLESS // !!! *FIX: (?)
|
||||
llwarns << "OSMessageBox: " << text << llendl;
|
||||
return OSBTN_OK;
|
||||
#elif LL_WINDOWS
|
||||
|
|
@ -324,7 +324,7 @@ bool LLSplashScreen::isVisible()
|
|||
// static
|
||||
LLSplashScreen *LLSplashScreen::create()
|
||||
{
|
||||
#if LL_MESA_HEADLESS || LL_SDL // !!! *FIX: (???)
|
||||
#if LL_MESA_HEADLESS || LL_SDL // !!! *FIX: (?)
|
||||
return 0;
|
||||
#elif LL_WINDOWS
|
||||
return new LLSplashScreenWin32;
|
||||
|
|
|
|||
|
|
@ -223,7 +223,7 @@ LLWindowSDL::LLWindowSDL(LLWindowCallbacks* callbacks,
|
|||
mOriginalAspectRatio = 1024.0 / 768.0;
|
||||
|
||||
if (title.empty())
|
||||
mWindowTitle = "SDL Window"; // *FIX: (???)
|
||||
mWindowTitle = "SDL Window"; // *FIX: (?)
|
||||
else
|
||||
mWindowTitle = title;
|
||||
|
||||
|
|
@ -956,7 +956,7 @@ BOOL LLWindowSDL::setPosition(const LLCoordScreen position)
|
|||
{
|
||||
if(mWindow)
|
||||
{
|
||||
// *FIX: (???)
|
||||
// *FIX: (?)
|
||||
//MacMoveWindow(mWindow, position.mX, position.mY, false);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ LLAgentWearables::sendAgentWearablesUpdateCallback::~sendAgentWearablesUpdateCal
|
|||
*
|
||||
* Would like to pass the agent in here, but we can't safely
|
||||
* count on it being around later. Just use gAgent directly.
|
||||
* @param cb callback to execute on completion (??? unused ???)
|
||||
* @param cb callback to execute on completion (? unused ?)
|
||||
* @param type Type for the wearable in the agent
|
||||
* @param wearable The wearable data.
|
||||
* @param todo Bitmask of actions to take on completion.
|
||||
|
|
|
|||
|
|
@ -4772,7 +4772,7 @@ void LLAppViewer::idle()
|
|||
static LLFrameStatsTimer viewer_stats_timer(SEND_STATS_PERIOD);
|
||||
|
||||
// Update session stats every large chunk of time
|
||||
// *FIX: (???) SAMANTHA
|
||||
// *FIX: (?) SAMANTHA
|
||||
if (viewer_stats_timer.getElapsedTimeF32() >= SEND_STATS_PERIOD && !gDisconnected)
|
||||
{
|
||||
llinfos << "Transmitting sessions stats" << llendl;
|
||||
|
|
|
|||
|
|
@ -1352,7 +1352,7 @@ void LLIMModel::sendMessage(const std::string& utf8_text,
|
|||
// IM_SESSION_INVITE means that this is an Ad-hoc incoming chat
|
||||
// (it can be also Group chat but it is checked above)
|
||||
// In this case mInitialTargetIDs contains Ad-hoc session ID and it should not be added
|
||||
// to Recent People to prevent showing of an item with (???)(???). See EXT-8246.
|
||||
// to Recent People to prevent showing of an item with (?? ?)(?? ?), sans the spaces. See EXT-8246.
|
||||
// Concrete participants will be added into this list once they sent message in chat.
|
||||
if (IM_SESSION_INVITE == dialog) return;
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
const S32 BOTTOM_PAD = VPAD * 3;
|
||||
const S32 IGNORE_BTN_TOP_DELTA = 3*VPAD;//additional ignore_btn padding
|
||||
S32 BUTTON_WIDTH = 90;
|
||||
// *TODO: magic numbers(???) - copied from llnotify.cpp(250)
|
||||
// *TODO: magic numbers(?) - copied from llnotify.cpp(250)
|
||||
const S32 MAX_LENGTH = 512 + 20 + DB_FIRST_NAME_BUF_SIZE + DB_LAST_NAME_BUF_SIZE + DB_INV_ITEM_NAME_BUF_SIZE;
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@ public:
|
|||
// 500 means "Internal Server error" but we decided it's okay to
|
||||
// accept this and go past it in the MIME type probe
|
||||
// 302 means the resource can be found temporarily in a different place - added this for join.secondlife.com
|
||||
// 499 is a code specifc to join.secondlife.com (????) apparently safe to ignore
|
||||
// 499 is a code specifc to join.secondlife.com (?) apparently safe to ignore
|
||||
// if( ((status >= 200) && (status < 300)) ||
|
||||
// ((status >= 400) && (status < 499)) ||
|
||||
// (status == 500) ||
|
||||
|
|
|
|||
Loading…
Reference in New Issue