Changeset 480 in dev for trunk/ab5.0/abdev/ProjectEditor
- Timestamp:
- Apr 6, 2008, 10:03:28 PM (17 years ago)
- Location:
- trunk/ab5.0
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0
- Property svn:externals
-
old new 4 4 abdev/build/debug/system http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/system 5 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 6 abdev/build/release http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0
-
- Property svn:externals
-
trunk/ab5.0/abdev/ProjectEditor/NonVolatile.cpp
r475 r480 444 444 445 445 //インクルードディレクトリ 446 if(!GetStringValue("IncludeDir",szIncludeDir)) lstrcpy(szIncludeDir,". .\\Include\\");446 if(!GetStringValue("IncludeDir",szIncludeDir)) lstrcpy(szIncludeDir,".\\ablib\\src"); 447 447 448 448 HeapDefaultFree(buffer); … … 550 550 551 551 //インクルードディレクトリ 552 lstrcpy(szIncludeDir,". .\\Include\\");552 lstrcpy(szIncludeDir,".\\ablib\\src"); 553 553 554 554 //ウィンドウ位置、サイズ -
trunk/ab5.0/abdev/ProjectEditor/NonVolatile.h
r80 r480 103 103 //インクルードディレクトリ 104 104 char szIncludeDir[MAX_PATH]; 105 std::string GetIncludeDirFullPath() 106 { 107 return Jenga::Common::Path::MakeFullPath( szIncludeDir, ActiveBasic::Common::Environment::GetAbdevRootPath() ); 108 } 105 109 106 110 ////////////////////////////////////////////////////////////// -
trunk/ab5.0/abdev/ProjectEditor/ProjectEditor.cpp
r477 r480 2079 2079 2080 2080 //インクルードディレクトリ 2081 sprintf(temp2," /include_dir:\"%s\"",pobj_nv-> szIncludeDir);2081 sprintf(temp2," /include_dir:\"%s\"",pobj_nv->GetIncludeDirFullPath().c_str()); 2082 2082 lstrcat(temporary,temp2); 2083 2083 … … 2129 2129 2130 2130 //インクルードディレクトリ 2131 sprintf(temp2," /include_dir:\"%s\"",pobj_nv-> szIncludeDir);2131 sprintf(temp2," /include_dir:\"%s\"",pobj_nv->GetIncludeDirFullPath().c_str()); 2132 2132 lstrcat(temporary,temp2); 2133 2133 … … 2160 2160 2161 2161 //インクルードディレクトリ 2162 sprintf(temp2," /include_dir:\"%s\"",pobj_nv-> szIncludeDir);2162 sprintf(temp2," /include_dir:\"%s\"",pobj_nv->GetIncludeDirFullPath().c_str()); 2163 2163 lstrcat(temporary,temp2); 2164 2164 … … 2224 2224 2225 2225 //インクルードディレクトリ 2226 sprintf(temp2," /include_dir:\"%s\"",pobj_nv-> szIncludeDir);2226 sprintf(temp2," /include_dir:\"%s\"",pobj_nv->GetIncludeDirFullPath().c_str()); 2227 2227 lstrcat(temporary,temp2); 2228 2228 … … 2263 2263 2264 2264 //インクルードディレクトリ 2265 sprintf(temp2," /include_dir:\"%s\"",pobj_nv-> szIncludeDir);2265 sprintf(temp2," /include_dir:\"%s\"",pobj_nv->GetIncludeDirFullPath().c_str()); 2266 2266 lstrcat(temporary,temp2); 2267 2267 -
trunk/ab5.0/abdev/ProjectEditor/ProjectEditor.vcproj
r477 r480 52 52 AdditionalIncludeDirectories="..\..\;..\..\cpplibs\boost;.\include" 53 53 PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;JPN;THETEXT;WINVER=0x0501;_WIN32_WINNT=0x0501" 54 StringPooling=" true"54 StringPooling="false" 55 55 RuntimeLibrary="0" 56 EnableFunctionLevelLinking=" true"56 EnableFunctionLevelLinking="false" 57 57 UsePrecompiledHeader="2" 58 58 PrecompiledHeaderFile="$(IntDir)\$(ProjectName).pch" … … 63 63 WarningLevel="3" 64 64 SuppressStartupBanner="true" 65 DebugInformationFormat="3" 65 66 /> 66 67 <Tool … … 357 358 WarningLevel="3" 358 359 SuppressStartupBanner="true" 359 DebugInformationFormat=" 4"360 DebugInformationFormat="3" 360 361 /> 361 362 <Tool -
trunk/ab5.0/abdev/ProjectEditor/SubOperation.cpp
r477 r480 1260 1260 GetFullPath( temporary, pj_editor_Dir ); 1261 1261 pHeaderBuf = ReadBuffer_NonErrMsg( temporary ); 1262 if( !pHeaderBuf )1263 {1264 lstrcpy(temporary,".\\Include\\basic.sbp");1265 GetFullPath( temporary, pj_editor_Dir );1266 pHeaderBuf = ReadBuffer( temporary );1267 if( pHeaderBuf )1268 {1269 lstrcpy( pobj_nv->szIncludeDir, ".\\Include\\" );1270 }1271 }1272 1262 1273 1263 if( !pHeaderBuf ){
Note:
See TracChangeset
for help on using the changeset viewer.