- Timestamp:
- Mar 22, 2018, 9:32:50 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/DbEngines/UEngineXML.pas
r15 r17 309 309 if Command = 'FROM' then begin 310 310 TableName := GetNextPart(Text); 311 end ;311 end else raise Exception.Create('No table specified with FROM'); 312 312 Table := Database.Tables.SearchByName(TableName); 313 313 if Assigned(Table) then begin -
trunk/Forms/UFormMain.pas
r16 r17 37 37 var 38 38 FormMain: TFormMain; 39 39 40 40 41 implementation -
trunk/Install/deb/debian/control
r16 r17 3 3 Section: utils 4 4 Priority: optional 5 Standards-Version: 1. 5.05 Standards-Version: 1.0.0 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 -
trunk/Install/deb/debian/rules
r16 r17 11 11 12 12 override_dh_auto_build: 13 lazbuild --build-mode=Release --cpu=$DEB_TARGET_ARCH_CPU --operating-system=$DEB_TARGET_ARCH_OSMyData.lpi13 lazbuild --build-mode=Release MyData.lpi 14 14 15 15 override_dh_auto_install: -
trunk/MyData.lpi
r16 r17 28 28 <SearchPaths> 29 29 <IncludeFiles Value="$(ProjOutDir)"/> 30 <OtherUnitFiles Value="Forms "/>30 <OtherUnitFiles Value="Forms;DbEngines;/usr/lib/mysql/;/usr/lib64/mysql/"/> 31 31 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)-$(BuildMode)"/> 32 32 </SearchPaths> -
trunk/UCore.pas
r16 r17 224 224 begin 225 225 if not Initialized then begin 226 {$IFDEF Linux} 227 // If installed in Linux system then use installation directory for po files 228 if Application.ExeName = '/usr/bin/MyData' then 229 CoolTranslator1.POFilesFolder := '/usr/share/MyData/languages'; 230 {$ENDIF} 226 231 InitDataTypes; 227 232 InitEngines;
Note:
See TracChangeset
for help on using the changeset viewer.