Better naming of a variable.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25354 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2008-05-07 19:22:05 +00:00
parent 3dd6b9cfa1
commit fde63f5602
1 changed files with 3 additions and 3 deletions

View File

@ -205,7 +205,7 @@ MIMEManager::MessageReceived(BMessage *message)
status_t threadStatus = B_NO_INIT; status_t threadStatus = B_NO_INIT;
bool messageIsDetached = false; bool messageIsDetached = false;
bool stillOwnThread = true; bool stillOwnsThread = true;
// Gather our arguments // Gather our arguments
err = message->FindRef("entry", &root); err = message->FindRef("entry", &root);
@ -253,7 +253,7 @@ MIMEManager::MessageReceived(BMessage *message)
if (!err) { if (!err) {
err = fThreadManager.LaunchThread(thread); err = fThreadManager.LaunchThread(thread);
if (!err) { if (!err) {
stillOwnThread = false; stillOwnsThread = false;
} }
} }
@ -272,7 +272,7 @@ MIMEManager::MessageReceived(BMessage *message)
if (messageIsDetached && threadStatus != B_OK) if (messageIsDetached && threadStatus != B_OK)
delete message; delete message;
// Delete the thread if necessary // Delete the thread if necessary
if (stillOwnThread) if (stillOwnsThread)
delete thread; delete thread;
break; break;
} }