[DEVELOPMENT ENVIRONMENT]

* BUG: Profile windows should not crash anymore when displaying percentage 
  values.


git-svn-id: svn://localhost/gambas/trunk@7298 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2015-09-11 20:35:57 +00:00
parent 99c8a1a7c7
commit 8ecb0c50be

View file

@ -457,6 +457,11 @@ Public Sub gvwProfile_Data(Row As Integer, Column As Integer)
End Select
End With
Catch
gvwProfile.Data.Text = ""
gvwProfile.Data.Background = Color.ButtonBackground
End
@ -806,6 +811,11 @@ Public Sub gvwCalled_Data(Row As Integer, Column As Integer)
End With
Catch
gvwCalled.Data.Text = ""
gvwCalled.Data.Background = Color.ButtonBackground
End
Public Sub gvwCalled_Activate()
@ -980,6 +990,11 @@ Public Sub gvwSource_Data(Row As Integer, Column As Integer)
End With
Catch
gvwSource.Data.Text = ""
gvwSource.Data.Background = Color.ButtonBackground
End
Public Sub edtSource_Scroll()