[DEVELOPMENT ENVIRONMENT]
* BUG: Clicking on a void index table in the database editor does not crash anymore. git-svn-id: svn://localhost/gambas/trunk@3943 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
edfcedca80
commit
b217a03484
2 changed files with 23 additions and 25 deletions
|
@ -809,91 +809,91 @@ msgstr ""
|
|||
msgid "unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:94
|
||||
#: FConnectionEditor.class:549 MConnection.module:94
|
||||
msgid "Boolean"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:86
|
||||
#: FConnectionEditor.class:549 MConnection.module:86
|
||||
msgid "Integer"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:88
|
||||
#: FConnectionEditor.class:549 MConnection.module:88
|
||||
msgid "Long"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:98
|
||||
#: FConnectionEditor.class:549 MConnection.module:98
|
||||
msgid "Serial"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:90
|
||||
#: FConnectionEditor.class:549 MConnection.module:90
|
||||
msgid "Float"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:96
|
||||
#: FConnectionEditor.class:549 MConnection.module:96
|
||||
msgid "String"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:92
|
||||
#: FConnectionEditor.class:549 MConnection.module:92
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:552 MConnection.module:100
|
||||
#: FConnectionEditor.class:549 MConnection.module:100
|
||||
msgid "Blob"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:630
|
||||
#: FConnectionEditor.class:628
|
||||
msgid "This name is already in used."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:655
|
||||
#: FConnectionEditor.class:653
|
||||
msgid "Please enter a number."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:660
|
||||
#: FConnectionEditor.class:658
|
||||
msgid "The length must be greater than 1 and lower than 255."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:684
|
||||
#: FConnectionEditor.class:682
|
||||
msgid "Type mismatch."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:724
|
||||
#: FConnectionEditor.class:722
|
||||
msgid "This name already exists."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:803
|
||||
#: FConnectionEditor.class:801
|
||||
msgid "This field is used in an index."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1156
|
||||
#: FConnectionEditor.class:1154
|
||||
msgid "The table '&1' has no primary key."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1239
|
||||
#: FConnectionEditor.class:1237
|
||||
msgid "Cannot write table '&1'."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1352
|
||||
#: FConnectionEditor.class:1350
|
||||
msgid "Do you really want to delete table '&1'?"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1362
|
||||
#: FConnectionEditor.class:1360
|
||||
msgid "Cannot delete table '&1'."
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1398
|
||||
#: FConnectionEditor.class:1396
|
||||
msgid "Select the CSV file to import"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1399 FExportData.class:21
|
||||
#: FConnectionEditor.class:1397 FExportData.class:21
|
||||
msgid "CSV files"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1399 FTranslate.class:1266
|
||||
#: FConnectionEditor.class:1397 FTranslate.class:1266
|
||||
msgid "All files"
|
||||
msgstr ""
|
||||
|
||||
#: FConnectionEditor.class:1422
|
||||
#: FConnectionEditor.class:1420
|
||||
msgid "Do you really want to remove the selected rows?"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -530,9 +530,6 @@ Public Sub tbvField_Activate()
|
|||
|
||||
End
|
||||
|
||||
|
||||
|
||||
|
||||
Public Sub tbvField_Click()
|
||||
|
||||
Dim hField As CField
|
||||
|
@ -574,6 +571,7 @@ Public Sub tbvIndex_Click()
|
|||
Dim hIndex As CIndexField
|
||||
|
||||
If $bReadOnly Then Return
|
||||
If tbvIndex.Row < 0 Then Return
|
||||
|
||||
hIndex = $aIndexField[tbvIndex.Row]
|
||||
|
||||
|
|
Loading…
Reference in a new issue