]> git.sesse.net Git - vlc/blobdiff - modules/gui/beos/PlayListWindow.cpp
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / beos / PlayListWindow.cpp
index 40c53a5296275cca74b045afd3a2c3f78a6e4b2e..069eaeba43543d83eae5bb1faff892fbf7c7c14d 100644 (file)
  *
  * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
-
+#if 0
 /* System headers */
 #include <InterfaceKit.h>
 #include <StorageKit.h>
-#include <string.h>
 
 /* VLC headers */
 #include <vlc/vlc.h>
-#include <vlc/intf.h>
+#include <vlc_interface.h>
 
 /* BeOS interface headers */
 #include "InterfaceWindow.h"
@@ -72,7 +71,7 @@ PlayListWindow::PlayListWindow( BRect frame, const char* name,
     snprintf( psz_tmp, 1024, "%s%s", a, B_UTF8_ELLIPSIS );
 
     p_intf = p_interface;
-    
     SetName( _("playlist") );
 
     // set up the main menu bar
@@ -191,7 +190,7 @@ PlayListWindow::~PlayListWindow()
 bool
 PlayListWindow::QuitRequested()
 {
-    Hide(); 
+    Hide();
     return false;
 }
 
@@ -366,3 +365,4 @@ PlayListWindow::_SetMenuItemEnabled( BMenuItem* item, bool enabled ) const
     if ( item->IsEnabled() != enabled )
         item->SetEnabled( enabled );
 }
+#endif