diff src/gtkconv.h @ 7118:bf630f7dfdcd

[gaim-migrate @ 7685] Here's a commit that I think will make faceprint happy. GaimWindow -> GaimConvWindow, GaimIm -> GaimConvIm, GaimChat -> GaimConvChat, GaimBlistChat -> GaimChat, and updated the API functions as well. Plugin authors are going to hunt me down and murder me. I can feel it.. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 02 Oct 2003 02:54:07 +0000
parents feb3d21a7794
children c7f0a4397d9e
line wrap: on
line diff
--- a/src/gtkconv.h	Thu Oct 02 02:15:36 2003 +0000
+++ b/src/gtkconv.h	Thu Oct 02 02:54:07 2003 +0000
@@ -203,7 +203,7 @@
 	((GaimGtkConversation *)(conv)->ui_data)
 
 #define GAIM_IS_GTK_WINDOW(win) \
-	(gaim_window_get_ui_ops(win) == gaim_gtk_conversations_get_win_ui_ops())
+	(gaim_conv_window_get_ui_ops(win) == gaim_gtk_conversations_get_win_ui_ops())
 
 #define GAIM_IS_GTK_CONVERSATION(conv) \
 	(gaim_conversation_get_ui_ops(conv) == \
@@ -226,7 +226,7 @@
  *
  * @return The GTK window operations structure.
  */
-GaimWindowUiOps *gaim_gtk_conversations_get_win_ui_ops(void);
+GaimConvWindowUiOps *gaim_gtk_conversations_get_win_ui_ops(void);
 
 /**
  * Returns the UI operations structure for GTK conversations.
@@ -299,7 +299,7 @@
  *
  * @return The GTK+ window at the location, if it exists, or @c NULL otherwise.
  */
-GaimWindow *gaim_gtkwin_get_at_xy(int x, int y);
+GaimConvWindow *gaim_gtkwin_get_at_xy(int x, int y);
 
 /**
  * Returns the index of the tab at the specified X, Y location in a notebook.
@@ -310,7 +310,7 @@
  *
  * @return The index of the tab at the location.
  */
-int gaim_gtkconv_get_tab_at_xy(GaimWindow *win, int x, int y);
+int gaim_gtkconv_get_tab_at_xy(GaimConvWindow *win, int x, int y);
 
 /**
  * Returns the index of the destination tab at the
@@ -325,7 +325,7 @@
  *
  * @return The index of the tab at the location.
  */
-int gaim_gtkconv_get_dest_tab_at_xy(GaimWindow *win, int x, int y);
+int gaim_gtkconv_get_dest_tab_at_xy(GaimConvWindow *win, int x, int y);
 
 /*@}*/