aboutsummaryrefslogtreecommitdiffstats
path: root/modules/plugin-python
Commit message (Collapse)AuthorAgeFilesLines
* More whitespace cleanup.Matthew Barnes2011-01-311-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-1/+1
|
* Bug #608766 - Replace pthread with GLib's GThreadMilan Crha2010-04-151-1/+1
|
* Fix a potential uninitialized argument in e-plugin-python.c.Matthew Barnes2010-01-161-4/+6
| | | | | | | | | | | if (PyCallable_Check (priv->pClass)) pInstance = PyObject_CallObject (priv->pClass, NULL); pValue = PyObject_CallMethod (pInstance, (gchar *) name, NULL); 'pInstance' may be uninitialzed in call to PyObject_CallMethod(). Found by the Clang Static Analyzer.
* BugĀ 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-171-1/+1
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-012-7/+9
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-308-0/+442
- Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.