mirror of
https://github.com/fadden/6502bench.git
synced 2025-09-25 21:16:52 +00:00
Rough layout of local variable tables
Create the XAML and some skeletal classes.
This commit is contained in:
@@ -1685,6 +1685,18 @@ namespace SourceGen {
|
||||
}
|
||||
}
|
||||
|
||||
public bool CanEditLocalVariableTable() {
|
||||
return true; // TODO
|
||||
}
|
||||
|
||||
public void EditLocalVariableTable() {
|
||||
// TODO
|
||||
EditLocalVariableTable dlg = new EditLocalVariableTable(mMainWin);
|
||||
if (dlg.ShowDialog() != true) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
public bool CanEditLongComment() {
|
||||
if (SelectionAnalysis.mNumItemsSelected != 1) {
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user