[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r1769: Make the bases of TrayIconImpl public. Why this worked every (in trunk: . src/gui/tray)



Author: edmanm
Date: 2007-06-03 17:59:21 -0400 (Sun, 03 Jun 2007)
New Revision: 1769

Modified:
   trunk/
   trunk/src/gui/tray/trayicon_mac.h
   trunk/src/gui/tray/trayicon_win.h
   trunk/src/gui/tray/trayicon_x11.h
Log:
 r1895@adrastea:  edmanm | 2007-06-03 17:59:06 -0400
 Make the bases of TrayIconImpl public. Why this worked everywhere except
 Panther, I have no idea.



Property changes on: trunk
___________________________________________________________________
 svk:merge ticket from /vidalia/local/trunk [r1895] on 54b3572a-7227-0410-958f-53ecd705b71a

Modified: trunk/src/gui/tray/trayicon_mac.h
===================================================================
--- trunk/src/gui/tray/trayicon_mac.h	2007-06-03 07:03:28 UTC (rev 1768)
+++ trunk/src/gui/tray/trayicon_mac.h	2007-06-03 21:59:21 UTC (rev 1769)
@@ -34,7 +34,7 @@
 #include <QString>
 
 
-class TrayIconImpl : protected QWidget
+class TrayIconImpl : public QWidget
 {
 protected:
   /** Default Constructor */

Modified: trunk/src/gui/tray/trayicon_win.h
===================================================================
--- trunk/src/gui/tray/trayicon_win.h	2007-06-03 07:03:28 UTC (rev 1768)
+++ trunk/src/gui/tray/trayicon_win.h	2007-06-03 21:59:21 UTC (rev 1769)
@@ -36,7 +36,7 @@
 #include <QMouseEvent>
 
 
-class TrayIconImpl : protected QWidget
+class TrayIconImpl : public QWidget
 {
 protected:
   /** Default constructor. */

Modified: trunk/src/gui/tray/trayicon_x11.h
===================================================================
--- trunk/src/gui/tray/trayicon_x11.h	2007-06-03 07:03:28 UTC (rev 1768)
+++ trunk/src/gui/tray/trayicon_x11.h	2007-06-03 21:59:21 UTC (rev 1769)
@@ -54,7 +54,7 @@
 #include <QEvent>
 
 
-class TrayIconImpl : protected QLabel 
+class TrayIconImpl : public QLabel 
 {
 protected:
   /** Default constructor. */