d59729f396
fixed it by looking for funny things that deviated from the sameples, and doing various recommended safe things, and found a few sql errors, and one by one the crashes went away. The new wxWidgets just seems less tolerant of little careless stuff that is not right.
27 lines
947 B
C++
27 lines
947 B
C++
#pragma once
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: conftest.cpp
|
|
// Purpose: demo of wxConfig and related classes
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 03.08.98
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
#include "stdafx.h"
|
|
// ----------------------------------------------------------------------------
|
|
// classes
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class MyApp : public wxApp
|
|
{
|
|
public:
|
|
// implement base class virtuals
|
|
virtual bool OnInit() wxOVERRIDE;
|
|
virtual int OnExit() wxOVERRIDE;
|
|
};
|