src/eric7/Project/Project.py

branch
eric7
changeset 10692
9becf9ca115c
parent 10681
3bee3b3ff272
child 10694
f46c1e224e8a
child 10704
27d21e5163b8
child 10758
1fd5ea95c0e3
--- a/src/eric7/Project/Project.py	Tue Apr 23 09:29:13 2024 +0200
+++ b/src/eric7/Project/Project.py	Tue Apr 23 11:26:04 2024 +0200
@@ -6615,21 +6615,15 @@
         (execute or question).
         """
         if Preferences.getProject("AutoExecuteMake"):
-            self.__executeMake(
-                questionOnly=self.__pdata["MAKEPARAMS"]["MakeTestOnly"],
-                interactive=False,
-            )
+            self.__executeMake(questionOnly=self.__pdata["MAKEPARAMS"]["MakeTestOnly"])
 
     @pyqtSlot()
-    def __executeMake(self, questionOnly=False, interactive=True):
+    def __executeMake(self, questionOnly=False):
         """
         Private method to execute a project specific make run.
 
         @param questionOnly flag indicating to ask make for changes only
         @type bool
-        @param interactive flag indicating an interactive invocation (i.e.
-            through a menu action)
-        @type bool
         """
         if (
             not self.__pdata["MAKEPARAMS"]["MakeEnabled"]

eric ide

mercurial