Ejemplo n.º 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.0!")
Ejemplo n.º 2
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!")
Ejemplo n.º 3
0
    def deactivate(self):
        """Deactivates the plugin.

        Also clears references to the IDE settings and global data
        """
        self.ide.deactivate()
        IPlugin.deactivate(self)
Ejemplo n.º 4
0
 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)
Ejemplo n.º 5
0
 def deactivate(self):
     IPlugin.deactivate(self)
     return
Ejemplo n.º 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)
Ejemplo n.º 7
0
 def deactivate(self):
     """Deactivation of the plugin"""
     IPlugin.deactivate(self)
Ejemplo n.º 8
0
	def deactivate(self):
		"""
		Just call the parent class's method
		"""
		IPlugin.deactivate(self)
Ejemplo n.º 9
0
 def deactivate(self):
     IPlugin.deactivate(self)
     self.save()
Ejemplo n.º 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)
Ejemplo n.º 11
0
 def deactivate(self):
     logger.debug("deactivate plugin object [%s]",
                  self.__class__.__name__)
     return IPlugin.deactivate(self)
Ejemplo n.º 12
0
 def deactivate(self):
     """Deactivate plugin."""
     IPlugin.deactivate(self)
Ejemplo n.º 13
0
 def deactivate(self):
     """Deactivate plugin."""
     IPlugin.deactivate(self)
Ejemplo n.º 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