summaryrefslogtreecommitdiff
path: root/logview/src/logview-filter.c
diff options
context:
space:
mode:
Diffstat (limited to 'logview/src/logview-filter.c')
-rw-r--r--logview/src/logview-filter.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/logview/src/logview-filter.c b/logview/src/logview-filter.c
index b5f9cfc6..1a865fa8 100644
--- a/logview/src/logview-filter.c
+++ b/logview/src/logview-filter.c
@@ -2,17 +2,17 @@
/*
* mate-utils
* Copyright (C) Johannes Schmid 2009 <[email protected]>
- *
+ *
* mate-utils is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
- *
+ *
* mate-utils is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -42,7 +42,7 @@ struct _LogviewFilterPrivate {
(G_TYPE_INSTANCE_GET_PRIVATE ((o), LOGVIEW_TYPE_FILTER, LogviewFilterPrivate))
static void
-logview_filter_init (LogviewFilter *object)
+logview_filter_init (LogviewFilter *object)
{
object->priv = LOGVIEW_FILTER_GET_PRIVATE(object);
object->priv->tag = NULL;
@@ -77,7 +77,7 @@ logview_filter_set_property (GObject *object, guint prop_id, const GValue *value
const gchar* regex;
err = NULL;
-
+
regex = g_value_get_string (value);
priv->regex = g_regex_new (regex, 0, 0, &err);