summaryrefslogtreecommitdiff
path: root/indra/newview/llparcelselection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llparcelselection.cpp')
-rw-r--r--indra/newview/llparcelselection.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/llparcelselection.cpp b/indra/newview/llparcelselection.cpp
index 12ac947dea..3bfa886bfe 100644
--- a/indra/newview/llparcelselection.cpp
+++ b/indra/newview/llparcelselection.cpp
@@ -36,8 +36,8 @@
//
LLParcelSelection::LLParcelSelection() :
mParcel(NULL),
- mSelectedMultipleOwners(FALSE),
- mWholeParcelSelected(FALSE),
+ mSelectedMultipleOwners(false),
+ mWholeParcelSelected(false),
mSelectedSelfCount(0),
mSelectedOtherCount(0),
mSelectedPublicCount(0)
@@ -46,8 +46,8 @@ LLParcelSelection::LLParcelSelection() :
LLParcelSelection::LLParcelSelection(LLParcel* parcel) :
mParcel(parcel),
- mSelectedMultipleOwners(FALSE),
- mWholeParcelSelected(FALSE),
+ mSelectedMultipleOwners(false),
+ mWholeParcelSelected(false),
mSelectedSelfCount(0),
mSelectedOtherCount(0),
mSelectedPublicCount(0)
@@ -58,13 +58,13 @@ LLParcelSelection::~LLParcelSelection()
{
}
-BOOL LLParcelSelection::getMultipleOwners() const
+bool LLParcelSelection::getMultipleOwners() const
{
return mSelectedMultipleOwners;
}
-BOOL LLParcelSelection::getWholeParcelSelected() const
+bool LLParcelSelection::getWholeParcelSelected() const
{
return mWholeParcelSelected;
}