Coding style and whitespace cleanup.

This commit is contained in:
Matthew Barnes
2011-11-30 20:53:20 -06:00
parent 49bc4c2d76
commit 23f5773903
358 changed files with 6837 additions and 8328 deletions

View File

@ -32,6 +32,10 @@
#include <sys/types.h>
#include <string.h>
#define E_PLUGIN_PYTHON_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
((obj), E_TYPE_PLUGIN_PYTHON, EPluginPythonPrivate))
struct _EPluginPythonPrivate {
PyObject *pModule;
PyObject *pClass;
@ -199,8 +203,7 @@ plugin_python_init (EPluginPython *plugin_python)
(GDestroyNotify) g_free,
(GDestroyNotify) NULL);
plugin_python->priv = G_TYPE_INSTANCE_GET_PRIVATE (
plugin_python, E_TYPE_PLUGIN_PYTHON, EPluginPythonPrivate);
plugin_python->priv = E_PLUGIN_PYTHON_GET_PRIVATE (plugin_python);
plugin_python->priv->methods = methods;
}