diff pidgin/gtkconv-theme.c @ 32195:79d48418ba0b

Add a function for lookup of Info.plist entries.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Wed, 21 Sep 2011 02:54:35 +0000
parents 3294e08d7466
children ceae9fb7ae0b
line wrap: on
line diff
--- a/pidgin/gtkconv-theme.c	Wed Sep 21 01:51:34 2011 +0000
+++ b/pidgin/gtkconv-theme.c	Wed Sep 21 02:54:35 2011 +0000
@@ -671,6 +671,15 @@
 	priv->info = info;
 }
 
+const GValue *
+pidgin_conversation_theme_lookup(PidginConvTheme *theme, const char *key, gboolean specific)
+{
+	PidginConvThemePrivate *priv;
+	priv = PIDGIN_CONV_THEME_GET_PRIVATE(theme);
+
+	return get_key(priv, key, specific);
+}
+
 const char *
 pidgin_conversation_theme_get_template(PidginConvTheme *theme, PidginConvThemeTemplateType type)
 {