fixed bug #825
This commit is contained in:
parent
85a8160d89
commit
aaff869e77
1 changed files with 11 additions and 8 deletions
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ZebraCellRenderer.cxx,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/src/ZebraCellRenderer.cxx,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -223,12 +223,13 @@ ZebraCellRenderer::render_vfunc(const Glib::RefPtr<Gdk::Drawable>& window,
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
* The user clicked on the cell.
|
* The user clicked on the cell.
|
||||||
*----------------------------------------------------------------------------*/
|
*----------------------------------------------------------------------------*/
|
||||||
bool ZebraCellRenderer::activate_vfunc(GdkEvent* event,
|
bool
|
||||||
Gtk::Widget& widget,
|
ZebraCellRenderer::activate_vfunc(GdkEvent* event,
|
||||||
const Glib::ustring& path,
|
Gtk::Widget& widget,
|
||||||
const Gdk::Rectangle& background_area,
|
const Glib::ustring& path,
|
||||||
const Gdk::Rectangle& cell_area,
|
const Gdk::Rectangle& background_area,
|
||||||
Gtk::CellRendererState flags)
|
const Gdk::Rectangle& cell_area,
|
||||||
|
Gtk::CellRendererState flags)
|
||||||
throw ()
|
throw ()
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
@ -238,9 +239,11 @@ bool ZebraCellRenderer::activate_vfunc(GdkEvent* event,
|
||||||
// << background_area << ", "
|
// << background_area << ", "
|
||||||
// << cell_area << ", "
|
// << cell_area << ", "
|
||||||
<< flags << "\n";
|
<< flags << "\n";
|
||||||
|
*/
|
||||||
// call the parent function
|
// call the parent function
|
||||||
Gtk::CellRendererText::activate_vfunc(event, widget, path,
|
return Gtk::CellRendererText::activate_vfunc(event, widget, path,
|
||||||
background_area, cell_area, flags);
|
background_area, cell_area, flags);
|
||||||
|
/*
|
||||||
std::cerr << "... done.\n";
|
std::cerr << "... done.\n";
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue