37ebdff349
- BaseWorkerPool (worker_pool_base.py): Eliminiert ~450 Zeilen Duplikation aus saxon_pool.py, saxon_pool_s9api.py und fop_pool.py; behebt stderr-Handle-Leak - XsltParamsEditDialog (XsltParamsEditDialog.py): Gemeinsame Basisklasse für TreeNodeEditDialog und XslFileEditDialog; reduziert je 162 auf 8 Zeilen Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
297 B
Python
10 lines
297 B
Python
from ui.TreeNodeEditDialog_ui import Ui_TreeNodeEditDialog
|
|
from ui.XsltParamsEditDialog import XsltParamsEditDialog
|
|
|
|
|
|
class TreeNodeEditDialog(XsltParamsEditDialog):
|
|
"""Dialog zur Bearbeitung von TreeNode-Objekten."""
|
|
|
|
def _create_ui(self):
|
|
return Ui_TreeNodeEditDialog()
|