- Timestamp:
- Apr 6, 2008, 8:51:31 PM (17 years ago)
- Location:
- trunk/ab5.0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0
- Property svn:externals
-
old new 1 1 ablib http://dev.activebasic.com/svnroot/ablib/trunk 2 abdev/build/debug/ include http://dev.activebasic.com/svnroot/ablib/trunk/Include3 abdev/build/debug/runtime http://dev.activebasic.com/svnroot/ablib/trunk/ bin/Runtime4 abdev/build/debug/system http://dev.activebasic.com/svnroot/ablib/trunk/ bin/SubOperation5 abdev/build/debug/theme http://dev.activebasic.com/svnroot/ablib/trunk/ bin/Theme6 abdev/build/release/ include http://dev.activebasic.com/svnroot/ablib/trunk/Include7 abdev/build/release/runtime http://dev.activebasic.com/svnroot/ablib/trunk/ bin/Runtime8 abdev/build/release/system http://dev.activebasic.com/svnroot/ablib/trunk/ bin/SubOperation9 abdev/build/release/theme http://dev.activebasic.com/svnroot/ablib/trunk/ bin/Theme2 abdev/build/debug/ablib http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/ablib 3 abdev/build/debug/runtime http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/runtime 4 abdev/build/debug/system http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/system 5 abdev/build/debug/theme http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/theme 6 abdev/build/release/ablib http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/ablib 7 abdev/build/release/runtime http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/runtime 8 abdev/build/release/system http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/system 9 abdev/build/release/theme http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/theme
-
- Property svn:externals
-
trunk/ab5.0/abdev/ProjectEditor/reg_exp.cpp
r477 r478 13 13 if( !hLib ) 14 14 { 15 MessageBox( NULL, "BREGEXP.dll �����Â���Ü��B", "Gñ��[", MB_OK | MB_ICONEXCLAMATION );15 MessageBox( NULL, "BREGEXP.dll が見つかりません。", "エラー", MB_OK | MB_ICONEXCLAMATION ); 16 16 } 17 17 -
trunk/ab5.0/abdev/ab_common/Environment.cpp
r477 r478 1 1 #include "stdafx.h" 2 2 3 std::string ActiveBasic::Common::Environment::rootPath = Jenga::Common::Environment::GetAppDir();3 std::string ActiveBasic::Common::Environment::rootPath; 4 4 5 5 using namespace ActiveBasic::Common; … … 8 8 { 9 9 Environment::rootPath = Jenga::Common::Path::MakeFullPath( rootPath, Jenga::Common::Environment::GetAppDir() ); 10 } 11 const std::string Environment::GetAbdevRootPath() 12 { 13 if( rootPath.empty() ) 14 { 15 SetAbdevRootPath( "" ); 16 } 17 return rootPath; 10 18 } 11 19 const std::string Environment::GetCompilerExePath( Platform::EnumType platform ) -
trunk/ab5.0/abdev/ab_common/Environment.h
r477 r478 19 19 static void SetAbdevRootPath( const std::string &rootPath ); 20 20 21 static const std::string GetAbdevRootPath() 22 { 23 return rootPath; 24 } 21 static const std::string GetAbdevRootPath(); 25 22 26 23 static const std::string GetAbdevSystemDirPath()
Note:
See TracChangeset
for help on using the changeset viewer.