From e6c8ed8cffdbe831ed2d2b108851aea95e9dbb42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Minisini?= Date: Wed, 11 Nov 2015 00:18:14 +0000 Subject: [PATCH] [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 --- app/src/gambas3/.project | 1 - app/src/gambas3/.src/Component/CDocumentation.class | 2 +- app/src/gambas3/.src/Editor/Form/FProperty.class | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/src/gambas3/.project b/app/src/gambas3/.project index e7a8bfb2b..3a4adbb06 100644 --- a/app/src/gambas3/.project +++ b/app/src/gambas3/.project @@ -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 diff --git a/app/src/gambas3/.src/Component/CDocumentation.class b/app/src/gambas3/.src/Component/CDocumentation.class index 2080a6a57..1fd05dfbf 100644 --- a/app/src/gambas3/.src/Component/CDocumentation.class +++ b/app/src/gambas3/.src/Component/CDocumentation.class @@ -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 diff --git a/app/src/gambas3/.src/Editor/Form/FProperty.class b/app/src/gambas3/.src/Editor/Form/FProperty.class index 8ffcc7685..712d8b1f7 100644 --- a/app/src/gambas3/.src/Editor/Form/FProperty.class +++ b/app/src/gambas3/.src/Editor/Form/FProperty.class @@ -800,7 +800,7 @@ Private Sub ShowProperty(Optional sFocus As String) Case "ReportCoord" hEditor = crdProperty - + Case "Angle" hEditor = txtAngle