changeset 20622:ced0666ab950

Reverted to void *, because Gtk::Window wasn't working :o(
author Gabriel Schulhof <nix@go-nix.ca>
date Sun, 23 Sep 2007 01:11:37 +0000
parents 5265fed9b93a
children fdefa5eb46e2
files pidgin/plugins/perl/common/GtkDialogs.xs pidgin/plugins/perl/common/GtkLog.xs pidgin/plugins/perl/common/GtkPlugin.xs pidgin/plugins/perl/common/GtkPounce.xs
diffstat 4 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/plugins/perl/common/GtkDialogs.xs	Sun Sep 23 00:56:54 2007 +0000
+++ b/pidgin/plugins/perl/common/GtkDialogs.xs	Sun Sep 23 01:11:37 2007 +0000
@@ -11,7 +11,7 @@
 
 void
 pidgin_dialogs_about_with_parent(parent)
-	Gtk::Window parent
+	void * parent
 
 void
 pidgin_dialogs_im()
--- a/pidgin/plugins/perl/common/GtkLog.xs	Sun Sep 23 00:56:54 2007 +0000
+++ b/pidgin/plugins/perl/common/GtkLog.xs	Sun Sep 23 01:11:37 2007 +0000
@@ -14,7 +14,7 @@
 
 void
 pidgin_log_show_with_parent(parent, type, screenname, account)
-	Gtk::Window parent
+	void * parent
 	Purple::LogType type
 	const char * screenname
 	Purple::Account account
@@ -25,7 +25,7 @@
 
 void
 pidgin_log_show_contact_with_parent(parent, contact)
-	Gtk::Window parent
+	void * parent
 	Purple::BuddyList::Contact contact
 
 MODULE = Pidgin::Log  PACKAGE = Pidgin::SysLog  PREFIX = pidgin_syslog_
@@ -36,4 +36,4 @@
 
 void
 pidgin_syslog_show_with_parent(parent)
-	Gtk::Window parent
+	void * parent
--- a/pidgin/plugins/perl/common/GtkPlugin.xs	Sun Sep 23 00:56:54 2007 +0000
+++ b/pidgin/plugins/perl/common/GtkPlugin.xs	Sun Sep 23 01:11:37 2007 +0000
@@ -14,4 +14,4 @@
 
 void
 pidgin_plugin_dialog_show_with_parent(parent)
-	Gtk::Window parent
+	void * parent
--- a/pidgin/plugins/perl/common/GtkPounce.xs	Sun Sep 23 00:56:54 2007 +0000
+++ b/pidgin/plugins/perl/common/GtkPounce.xs	Sun Sep 23 01:11:37 2007 +0000
@@ -11,7 +11,7 @@
 
 void
 pidgin_pounce_editor_show_with_parent(parent, account, name, cur_pounce)
-	Gtk::Window parent
+	void * parent
 	Purple::Account account
 	const char * name
 	Purple::Pounce cur_pounce
@@ -30,7 +30,7 @@
 
 void
 pidgin_pounces_manager_show_with_parent(parent)
-	Gtk::Window parent
+	void * parent
 
 void
 pidgin_pounces_manager_hide()