def deactivate(self):
        """
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
        IPlugin.deactivate(self)
        TEST_MESSAGE("Deactivated Version 1.0!")
	def deactivate(self):
		"""
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
		IPlugin.deactivate(self)
		TEST_MESSAGE("Deactivated Version 1.2a1!")
Exemple #3
0
    def deactivate(self):
        """Deactivates the plugin.

        Also clears references to the IDE settings and global data
        """
        self.ide.deactivate()
        IPlugin.deactivate(self)
 def deactivate(self):
     """
     Just call the parent class's method
     """
     if len(self._supported_dbms)>0:
         get_notification_center().disconnectDBSettingChanged(self.connect_to_db)
     self.option_widgets = {}
     removeLogger(self.plugin_name)
     IPlugin.deactivate(self)
Exemple #5
0
 def deactivate(self):
     IPlugin.deactivate(self)
     return
Exemple #6
0
	def deactivate(self):
		"""
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
		IPlugin.deactivate(self)
Exemple #7
0
 def deactivate(self):
     """Deactivation of the plugin"""
     IPlugin.deactivate(self)
Exemple #8
0
	def deactivate(self):
		"""
		Just call the parent class's method
		"""
		IPlugin.deactivate(self)
Exemple #9
0
 def deactivate(self):
     IPlugin.deactivate(self)
     self.save()
Exemple #10
0
	def deactivate(self):
		"""
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
		IPlugin.deactivate(self)
Exemple #11
0
 def deactivate(self):
     logger.debug("deactivate plugin object [%s]",
                  self.__class__.__name__)
     return IPlugin.deactivate(self)
Exemple #12
0
 def deactivate(self):
     """Deactivate plugin."""
     IPlugin.deactivate(self)
Exemple #13
0
 def deactivate(self):
     """Deactivate plugin."""
     IPlugin.deactivate(self)
Exemple #14
0
 def deactivate( self ):
     """ Deactivates the plugin and clears references to
         the IDE settings and global data """
     self.ide.deactivate()
     IPlugin.deactivate( self )
     return