summaryrefslogtreecommitdiffstats
path: root/examples2/dropsite.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples2/dropsite.py')
-rw-r--r--examples2/dropsite.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples2/dropsite.py b/examples2/dropsite.py
index 94b7e57..461b44e 100644
--- a/examples2/dropsite.py
+++ b/examples2/dropsite.py
@@ -49,15 +49,15 @@ class DropSite(TQLabel):
t += str(e.format( i ))
i += 1
self.emit(PYSIGNAL('message(TQString &)'), (TQString(t),))
- self.setBackgroundColor(TQt.white)
+ self.setPaletteBackgroundColor(TQt.white)
def dragLeaveEvent( self, TQDragLeaveEvent ):
# Give the user some feedback...
self.emit(PYSIGNAL('message(TQString &)'), (TQString(''),))
- self.setBackgroundColor(TQt.lightGray)
+ self.setPaletteBackgroundColor(TQt.lightGray)
def dropEvent( self, e ):
- self.setBackgroundColor(TQt.lightGray)
+ self.setPaletteBackgroundColor(TQt.lightGray)
# Try to decode to the data you understand...
str = TQString()
if ( TQTextDrag.decode( e, str ) ) :