Update of /cvsroot/libufo/ufo-0.5/src/ui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22108/src/ui
Modified Files:
ustylemanager.cpp
Log Message:
Replaced calls to setOpaque,setOpacity with CSS class ids (transparent).
Index: ustylemanager.cpp
===================================================================
RCS file: /cvsroot/libufo/ufo-0.5/src/ui/ustylemanager.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ustylemanager.cpp 15 Sep 2005 10:27:14 -0000 1.4
--- ustylemanager.cpp 11 Oct 2005 19:22:20 -0000 1.5
***************
*** 127,130 ****
--- 127,134 ----
m_hints["textedit"] = textedit;
m_hints["listbox"] = textedit->clone();
+
+ UStyleHints * transparent = new UStyleHints();
+ transparent->opacity = 0.0f;
+ m_hints[".transparent"] = transparent;
}
|