diff src/gtkconv.h @ 4465:6e37eb000b7a

[gaim-migrate @ 4740] Renamed _ops to _ui_ops for conversation-related stuff. Trying to standardize on a naming scheme before I do anything else. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 30 Jan 2003 01:43:35 +0000
parents a65555132674
children 5cdfd20daa07
line wrap: on
line diff
--- a/src/gtkconv.h	Wed Jan 29 23:34:04 2003 +0000
+++ b/src/gtkconv.h	Thu Jan 30 01:43:35 2003 +0000
@@ -175,10 +175,10 @@
 	((struct gaim_gtk_conversation *)(conv)->ui_data)
 
 #define GAIM_IS_GTK_WINDOW(win) \
-	(gaim_window_get_ops(win) == gaim_get_gtk_window_ops())
+	(gaim_window_get_ui_ops(win) == gaim_get_gtk_window_ui_ops())
 
 #define GAIM_IS_GTK_CONVERSATION(conv) \
-	(gaim_conversation_get_ops(conv) == gaim_get_gtk_conversation_ops())
+	(gaim_conversation_get_ui_ops(conv) == gaim_get_gtk_conversation_ui_ops())
 
 /**************************************************************************
  * @name GTK+ Conversation API
@@ -188,14 +188,14 @@
  *
  * @return The GTK window operations structure.
  */
-struct gaim_window_ops *gaim_get_gtk_window_ops(void);
+struct gaim_window_ui_ops *gaim_get_gtk_window_ui_ops(void);
 
 /**
  * Returns the UI operations structure for GTK conversations.
  *
  * @return The GTK conversation operations structure.
  */
-struct gaim_conversation_ops *gaim_get_gtk_conversation_ops(void);
+struct gaim_conversation_ui_ops *gaim_get_gtk_conversation_ui_ops(void);
 
 /**
  * Sets a lock on the update state.