Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 601938
Collapse All | Expand All

(-)mysql-workbench-community-6.3.4-src/library/forms/gtk/src/lf_popover.cpp (-2 / +2 lines)
Lines 380-386 Link Here
380
  if (_style == mforms::PopoverStyleTooltip)
380
  if (_style == mforms::PopoverStyleTooltip)
381
  {
381
  {
382
    Glib::RefPtr<Gdk::Window> wnd = this->get_window();
382
    Glib::RefPtr<Gdk::Window> wnd = this->get_window();
383
    if (wnd != 0)
383
    if (wnd)
384
    {
384
    {
385
      int xx;
385
      int xx;
386
      int yy;
386
      int yy;
Lines 396-402 Link Here
396
  {
396
  {
397
    Gdk::ModifierType mask;
397
    Gdk::ModifierType mask;
398
    Glib::RefPtr<Gdk::Display> dsp = Gdk::Display::get_default();
398
    Glib::RefPtr<Gdk::Display> dsp = Gdk::Display::get_default();
399
    if (dsp != 0)
399
    if (dsp)
400
      dsp->get_pointer(x, y, mask);
400
      dsp->get_pointer(x, y, mask);
401
  }
401
  }
402
402
(-)mysql-workbench-community-6.3.4-src/library/forms/gtk/src/lf_popup.cpp (-1 / +2 lines)
Lines 81-87 Link Here
81
{
81
{
82
  d("\n");
82
  d("\n");
83
  Glib::RefPtr<Gdk::Colormap> colormap = screen->get_rgba_colormap();
83
  Glib::RefPtr<Gdk::Colormap> colormap = screen->get_rgba_colormap();
84
  _have_rgba = colormap;
84
  if (colormap)
85
    _have_rgba = true;
85
86
86
  if (!_have_rgba)
87
  if (!_have_rgba)
87
    colormap = screen->get_rgb_colormap();
88
    colormap = screen->get_rgb_colormap();

Return to bug 601938