From 3c80703554799d426ce487724a8843a67acf4ca1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 22 Mar 2008 03:25:48 +0000 Subject: [PATCH] unused any more (should have been part of r52667) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52674 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/baseunix.cpp | 51 ------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 src/unix/baseunix.cpp diff --git a/src/unix/baseunix.cpp b/src/unix/baseunix.cpp deleted file mode 100644 index cce400bf20..0000000000 --- a/src/unix/baseunix.cpp +++ /dev/null @@ -1,51 +0,0 @@ -/////////////////////////////////////////////////////////////////////////////// -// Name: src/unix/baseunix.cpp -// Purpose: misc stuff only used in console applications under Unix -// Author: Vadim Zeitlin -// Modified by: -// Created: 23.06.2003 -// RCS-ID: $Id$ -// Copyright: (c) 2003 Vadim Zeitlin -// License: wxWindows licence -/////////////////////////////////////////////////////////////////////////////// - -// ============================================================================ -// declarations -// ============================================================================ - -// ---------------------------------------------------------------------------- -// headers -// ---------------------------------------------------------------------------- - -// for compilers that support precompilation, includes "wx.h". -#include "wx/wxprec.h" - -#ifdef __BORLANDC__ - #pragma hdrstop -#endif - -#ifndef WX_PRECOMP - #include "wx/log.h" - #include "wx/intl.h" - #include "wx/utils.h" -#endif //WX_PRECOMP - -#include "wx/unix/execute.h" -#include "wx/evtloop.h" -#include "wx/gsocket.h" - -#include "wx/unix/private/timer.h" - -// for waitpid() -#include -#include - -// ============================================================================ -// wxConsoleAppTraits implementation -// ============================================================================ - -#if wxUSE_TIMER - -#endif // wxUSE_TIMER - -// Note: wxConsoleAppTraits::CreateEventLoop() is defined in evtloopunix.cpp!