[DEVELOPMENT ENVIRONMENT]
* BUG: Contextual help (F2) on classes belonging to the project works correctly now. git-svn-id: svn://localhost/gambas/trunk@7463 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
5e9a9a2d10
commit
e6c8ed8cff
3 changed files with 2 additions and 3 deletions
|
@ -28,7 +28,6 @@ Component=gb.markdown
|
|||
Component=gb.util
|
||||
Description="Integrated Development Environment for Gambas"
|
||||
Authors="Benoît Minisini\nFabien Bodard\nCharlie Reinl\nJosé Luis Redrejo\nRobert Rowe\nTobias Boege"
|
||||
Environment="GB_GUI_BUSY=1"
|
||||
TabSize=2
|
||||
Translate=1
|
||||
Language=en
|
||||
|
|
|
@ -375,7 +375,7 @@ Public Sub MakeInheritance(hModule As Object, cSymbol As Collection, sParent As
|
|||
hModule.ParentClass = sParent
|
||||
hModule.ParentComponent = sComponent
|
||||
If Not hModule.AutoCreatable Then hModule.AutoCreatable = IsAutoCreatable(hModule.ParentClass)
|
||||
cClassSymbol = GetClassSymbols(sComponent &/ sParent)
|
||||
cClassSymbol = GetClassSymbols(sParent, sComponent)
|
||||
If cClassSymbol Then
|
||||
For Each hSymbol In cClassSymbol
|
||||
cSymbol[hSymbol.Name] = hSymbol
|
||||
|
|
|
@ -800,7 +800,7 @@ Private Sub ShowProperty(Optional sFocus As String)
|
|||
|
||||
Case "ReportCoord"
|
||||
hEditor = crdProperty
|
||||
|
||||
|
||||
Case "Angle"
|
||||
hEditor = txtAngle
|
||||
|
||||
|
|
Loading…
Reference in a new issue