[haiku-commits] haiku: hrev46400 - src/apps/serialconnect

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 21 Nov 2013 01:41:28 +0100 (CET)

hrev46400 adds 2 changesets to branch 'master'
old head: 22d74352829dc6d768e4c8c982347fe0da6d2798
new head: 79b1f63e81f6000d5c599b63860e4b27b33825d6
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=79b1f63+%5E22d7435

----------------------------------------------------------------------------

3cfd695: Revert "serialconnect: Fix gcc4 build"
  
  This reverts commit 1eb5facaf43e5423e39cae752817f2d68881593e.

79b1f63: Fix SerialConnect gcc4 build.
  
  - Add missing forward declaration for BFilePanel.

                                         [ Rene Gollent <rene@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

2 files changed, 2 insertions(+), 1 deletion(-)
src/apps/serialconnect/SerialWindow.cpp | 1 +
src/apps/serialconnect/SerialWindow.h   | 2 +-

############################################################################

Commit:      3cfd6956e97666e46bd97ed86783896451ae3a93
URL:         http://cgit.haiku-os.org/haiku/commit/?id=3cfd695
Author:      Rene Gollent <rene@xxxxxxxxxxx>
Date:        Thu Nov 21 00:36:56 2013 UTC

Revert "serialconnect: Fix gcc4 build"

This reverts commit 1eb5facaf43e5423e39cae752817f2d68881593e.

----------------------------------------------------------------------------

diff --git a/src/apps/serialconnect/SerialWindow.cpp 
b/src/apps/serialconnect/SerialWindow.cpp
index 67989aa..cbd7b67 100644
--- a/src/apps/serialconnect/SerialWindow.cpp
+++ b/src/apps/serialconnect/SerialWindow.cpp
@@ -8,6 +8,7 @@
 
 #include <stdio.h>
 
+#include <FilePanel.h>
 #include <GroupLayout.h>
 #include <Menu.h>
 #include <MenuBar.h>
diff --git a/src/apps/serialconnect/SerialWindow.h 
b/src/apps/serialconnect/SerialWindow.h
index 546f818..df35443 100644
--- a/src/apps/serialconnect/SerialWindow.h
+++ b/src/apps/serialconnect/SerialWindow.h
@@ -4,7 +4,6 @@
  */
 
 
-#include <FilePanel.h>
 #include <Window.h>
 
 

############################################################################

Revision:    hrev46400
Commit:      79b1f63e81f6000d5c599b63860e4b27b33825d6
URL:         http://cgit.haiku-os.org/haiku/commit/?id=79b1f63
Author:      Rene Gollent <rene@xxxxxxxxxxx>
Date:        Thu Nov 21 00:37:29 2013 UTC

Fix SerialConnect gcc4 build.

- Add missing forward declaration for BFilePanel.

----------------------------------------------------------------------------

diff --git a/src/apps/serialconnect/SerialWindow.h 
b/src/apps/serialconnect/SerialWindow.h
index df35443..4bd3816 100644
--- a/src/apps/serialconnect/SerialWindow.h
+++ b/src/apps/serialconnect/SerialWindow.h
@@ -7,6 +7,7 @@
 #include <Window.h>
 
 
+class BFilePanel;
 class BMenu;
 class TermView;
 


Other related posts:

  • » [haiku-commits] haiku: hrev46400 - src/apps/serialconnect - anevilyak