Don't cast with G_OBJECT when passing a GObject to g_object_ref, g_object_unref and g_signal_connect.

They take a gpointer, not GObject*, and unnecessary casting not all that speedy with GObject types.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39156 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2006-05-15 14:17:38 +00:00
parent 7e983dabef
commit 3fe39b0ce3
10 changed files with 75 additions and 75 deletions

View File

@@ -280,7 +280,7 @@ wxGnomePrintNativeData::wxGnomePrintNativeData()
wxGnomePrintNativeData::~wxGnomePrintNativeData()
{
g_object_unref (G_OBJECT (m_config));
g_object_unref (m_config);
}
bool wxGnomePrintNativeData::TransferTo( wxPrintData &data )
@@ -707,7 +707,7 @@ bool wxGnomePrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt )
if (!dc)
{
gs_lgp->gnome_print_job_close( job );
g_object_unref (G_OBJECT (job));
g_object_unref (job);
sm_lastError = wxPRINTER_ERROR;
return false;
}
@@ -738,7 +738,7 @@ bool wxGnomePrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt )
if (maxPage == 0)
{
gs_lgp->gnome_print_job_close( job );
g_object_unref (G_OBJECT (job));
g_object_unref (job);
sm_lastError = wxPRINTER_ERROR;
return false;
}
@@ -796,7 +796,7 @@ bool wxGnomePrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt )
gs_lgp->gnome_print_job_print( job );
}
g_object_unref (G_OBJECT (job));
g_object_unref (job);
delete dc;
return (sm_lastError == wxPRINTER_NO_ERROR);