]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/messages.hpp
Qt4 - typo.
[vlc] / modules / gui / qt4 / dialogs / messages.hpp
index 5425324bc606dd7afab58f0aa019efa92011f25a..a25ddbf9cbf4084f2dbc2350110c33d752f28c74 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * Messages.hpp : Information about a stream
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
- * $Id: Messages.hpp 16024 2006-07-13 13:51:05Z xtophe $
+ * Copyright (C) 2006-2007 the VideoLAN team
+ * $Id$
  *
  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
  *
@@ -18,7 +18,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 #ifndef _MESSAGES_DIALOG_H_
 #define _MESSAGES_DIALOG_H_
@@ -38,21 +39,21 @@ public:
     static MessagesDialog * getInstance( intf_thread_t *p_intf )
     {
         if( !instance)
-            instance = new MessagesDialog( p_intf);
+            instance = new MessagesDialog( p_intf );
         return instance;
     }
     virtual ~MessagesDialog();
 
 private:
-    MessagesDialog( intf_thread_t *);
+    MessagesDialog( intf_thread_t * );
     static MessagesDialog *instance;
     QSpinBox *verbosityBox;
     QTextEdit *messages;
-public slots:
+private slots:
     void updateLog();
-    void onCloseButton();
-    void onClearButton();
-    bool onSaveButton();
+    void close();
+    void clear();
+    bool save();
 };
 
 #endif