Ignore:
Timestamp:
Apr 4, 2008, 7:47:07 PM (17 years ago)
Author:
dai_9181
Message:

構成管理を変更中・・・(いったんコミット)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/ProjectEditor/reg_exp.cpp

    r80 r475  
     1#include "stdafx.h"
     2
    13#include "common.h"
     4
     5using namespace ActiveBasic::IDE;
    26
    37CRegExp obj_RegExp;
    48
    5 CRegExp::CRegExp(){
    6     char temporary[MAX_PATH];
    7     sprintf(temporary,"%sSubOperation\\BREGEXP.DLL",pj_editor_Dir);
    8 
    9     hLib=LoadLibrary(temporary);
     9CRegExp::CRegExp()
     10{
     11    const std::string bregexpDllPath = Program::GetApplicationSystemDirPath() + "\\system\\BREGEXP.dll";
     12    hLib = LoadLibrary( bregexpDllPath.c_str() );
    1013
    1114    BMatch=(PFUNC_BMatch)GetProcAddress(hLib,"BMatch");
     
    3437    else sprintf(pTemp,"m/(%s)/",exp);
    3538
    36     //Shift-JISで表現
     39    //Shift-JISナ表
    3740    lstrcat(pTemp,"k");
    3841
    39     //大文字・小文字
     42    //蝠カE
    4043    if(!IsBigSmall) lstrcat(pTemp,"i");
    4144
     
    7881    else sprintf(pTemp,"s/%s/%s/",exp,szPermu);
    7982
    80     //Shift-JISで表現
     83    //Shift-JISナ表
    8184    lstrcat(pTemp,"k");
    8285
    83     //大文字・小文字
     86    //蝠カE
    8487    if(!IsBigSmall) lstrcat(pTemp,"i");
    8588
Note: See TracChangeset for help on using the changeset viewer.