speed optimizations: some functions now use wxString::Alloc, wxTextFile::Read

uses a buffer to read data (instead of reading it one char at a time)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@276 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1998-07-15 17:14:06 +00:00
parent dd1eaa89dd
commit ba7f9a90b4
3 changed files with 54 additions and 45 deletions

View File

@@ -2,10 +2,10 @@
// Name: config.cpp
// Purpose: implementation of wxConfig class
// Author: Vadim Zeitlin
// Modified by:
// Modified by:
// Created: 07.04.98
// RCS-ID: $Id$
// Copyright: (c) 1997 Karsten Ball<6C>der Ballueder@usa.net
// Copyright: (c) 1997 Karsten Ball<6C>der Ballueder@usa.net
// Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
// Licence: wxWindows license
///////////////////////////////////////////////////////////////////////////////
@@ -128,13 +128,14 @@ wxConfig::PathChanger::~PathChanger()
wxString ExpandEnvVars(const wxString& str)
{
wxString strResult;
strResult.Alloc(str.Len());
// don't change the values the enum elements: they must be equal
// to the matching [closing] delimiter.
enum Bracket
{
Bracket_None,
Bracket_Normal = ')',
{
Bracket_None,
Bracket_Normal = ')',
Bracket_Curly = '}',
#ifdef __WXMSW__
Bracket_Windows = '%' // yeah, Windows people are a bit strange ;-)
@@ -160,8 +161,8 @@ wxString ExpandEnvVars(const wxString& str)
}
else {
switch ( str[n + 1] ) {
case '(':
bracket = Bracket_Normal;
case '(':
bracket = Bracket_Normal;
n++; // skip the bracket
break;