diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/llview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/llview.cpp b/linden/indra/llui/llview.cpp index fbcb69e..e5415f8 100644 --- a/linden/indra/llui/llview.cpp +++ b/linden/indra/llui/llview.cpp | |||
@@ -633,13 +633,13 @@ void LLView::translate(S32 x, S32 y) | |||
633 | } | 633 | } |
634 | 634 | ||
635 | // virtual | 635 | // virtual |
636 | BOOL LLView::canSnapTo(const LLView* other_view) const | 636 | BOOL LLView::canSnapTo(const LLView* other_view) |
637 | { | 637 | { |
638 | return other_view != this && other_view->getVisible(); | 638 | return other_view != this && other_view->getVisible(); |
639 | } | 639 | } |
640 | 640 | ||
641 | // virtual | 641 | // virtual |
642 | void LLView::snappedTo(LLView* snap_view) | 642 | void LLView::snappedTo(const LLView* snap_view) |
643 | { | 643 | { |
644 | } | 644 | } |
645 | 645 | ||