diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-07-19 17:29:34 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-08-13 13:19:35 -0300 |
commit | 2a74440547ea0a15195224fa2b7784b267cbfe15 (patch) | |
tree | 7cdb244da2e5369c3b922e3316fcff526c6d67e2 /qerror.c | |
parent | b5d90f0424ea27eb126a4eaed2554908fc463d9f (diff) |
qerror: reduce public exposure
qerror will be dropped in a near future, let's reduce its public
exposure by making functions only used in qerror.c static.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qerror.c')
-rw-r--r-- | qerror.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -336,7 +336,7 @@ static const QErrorStringTable qerror_table[] = { * * Return strong reference. */ -QError *qerror_new(void) +static QError *qerror_new(void) { QError *qerr; @@ -424,8 +424,8 @@ static void qerror_set_desc(QError *qerr, const char *fmt) * * Return strong reference. */ -QError *qerror_from_info(const char *file, int linenr, const char *func, - const char *fmt, va_list *va) +static QError *qerror_from_info(const char *file, int linenr, const char *func, + const char *fmt, va_list *va) { QError *qerr; @@ -549,7 +549,7 @@ QString *qerror_human(const QError *qerror) * it uses error_report() for this, so that the output is routed to the right * place (ie. stderr or Monitor's device). */ -void qerror_print(QError *qerror) +static void qerror_print(QError *qerror) { QString *qstring = qerror_human(qerror); loc_push_restore(&qerror->loc); @@ -620,7 +620,7 @@ void assert_no_error(Error *err) /** * qobject_to_qerror(): Convert a QObject into a QError */ -QError *qobject_to_qerror(const QObject *obj) +static QError *qobject_to_qerror(const QObject *obj) { if (qobject_type(obj) != QTYPE_QERROR) { return NULL; |