aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llplugin
diff options
context:
space:
mode:
authorAleric Inglewood2010-10-15 18:02:40 +0200
committerAleric Inglewood2010-10-15 18:02:40 +0200
commitb2d616b732943817b7e705fc8f6c4be9beee3def (patch)
tree9f7ba1665cb8439fea6fd4a7d589c023145281a0 /linden/indra/llplugin
parentComment out code to make it compile at all (with the latest llqtwebkit). (diff)
downloadmeta-impy-b2d616b732943817b7e705fc8f6c4be9beee3def.zip
meta-impy-b2d616b732943817b7e705fc8f6c4be9beee3def.tar.gz
meta-impy-b2d616b732943817b7e705fc8f6c4be9beee3def.tar.bz2
meta-impy-b2d616b732943817b7e705fc8f6c4be9beee3def.tar.xz
Rename LLRect::isNull to LLRect::isEmpty (a random thing I picked up from snowglobe 2.x).
Diffstat (limited to 'linden/indra/llplugin')
-rwxr-xr-xlinden/indra/llplugin/llpluginclassmedia.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llplugin/llpluginclassmedia.cpp b/linden/indra/llplugin/llpluginclassmedia.cpp
index 9f14920..5dc0c47 100755
--- a/linden/indra/llplugin/llpluginclassmedia.cpp
+++ b/linden/indra/llplugin/llpluginclassmedia.cpp
@@ -393,7 +393,7 @@ bool LLPluginClassMedia::textureValid(void)
393 393
394bool LLPluginClassMedia::getDirty(LLRect *dirty_rect) 394bool LLPluginClassMedia::getDirty(LLRect *dirty_rect)
395{ 395{
396 bool result = !mDirtyRect.isNull(); 396 bool result = !mDirtyRect.isEmpty();
397 397
398 if(dirty_rect != NULL) 398 if(dirty_rect != NULL)
399 { 399 {
@@ -793,7 +793,7 @@ void LLPluginClassMedia::receivePluginMessage(const LLPluginMessage &message)
793 newDirtyRect.mBottom = temp; 793 newDirtyRect.mBottom = temp;
794 } 794 }
795 795
796 if(mDirtyRect.isNull()) 796 if(mDirtyRect.isEmpty())
797 { 797 {
798 mDirtyRect = newDirtyRect; 798 mDirtyRect = newDirtyRect;
799 } 799 }