@@ -256,8 +256,6 @@ def init_ui(self):
256256 self .btn_remove_file = self .ui .findChild (QPushButton , "btn_remove_file" )
257257 self .btn_build_all = self .ui .findChild (QPushButton , "btn_build_all" )
258258 self .btn_cancel_all = self .ui .findChild (QPushButton , "btn_cancel_all" )
259- self .btn_export_config = self .ui .findChild (QPushButton , "btn_export_config" )
260- self .btn_import_config = self .ui .findChild (QPushButton , "btn_import_config" )
261259 self .btn_help = self .ui .findChild (QPushButton , "btn_help" )
262260 self .btn_suggest_deps = self .ui .findChild (QPushButton , "btn_suggest_deps" )
263261 self .btn_api_loader = self .ui .findChild (QPushButton , "btn_api_loader" )
@@ -290,14 +288,6 @@ def init_ui(self):
290288 self .btn_build_all .setToolTip (
291289 "Lancer la compilation de tous les fichiers sélectionnés."
292290 )
293- if self .btn_export_config :
294- self .btn_export_config .setToolTip (
295- "Exporter la configuration actuelle dans un fichier JSON."
296- )
297- if self .btn_import_config :
298- self .btn_import_config .setToolTip (
299- "Importer une configuration depuis un fichier JSON."
300- )
301291 if self .btn_cancel_all :
302292 self .btn_cancel_all .setToolTip ("Annuler toutes les compilations en cours." )
303293 if self .btn_remove_file :
@@ -556,8 +546,6 @@ def browse_output_dir():
556546 self .btn_select_icon .clicked .connect (self .select_icon )
557547 self .btn_build_all .clicked .connect (self .compile_all )
558548 self .btn_cancel_all .clicked .connect (self .cancel_all_compilations )
559- self .btn_export_config .clicked .connect (self .export_config )
560- self .btn_import_config .clicked .connect (self .import_config )
561549
562550 from bcasl import open_bc_loader_dialog
563551
0 commit comments