~ubuntu-branches/ubuntu/dapper/synaptic/dapper

« back to all changes in this revision

Viewing changes to gtk/rggladewindow.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2006-04-12 20:43:23 UTC
  • Revision ID: james.westby@ubuntu.com-20060412204323-uy6brzwih8b51tx1
Tags: 0.57.8ubuntu9
* fix a bug in the skip-taskbar handling (thanks to seb128)
* fix the column sorting (closes: #361070)
* use the urgency hint for the conffile prompt (ubuntu: #21898)
* better handling of the automatic terminal expanding (ubuntu: #38935)

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
      gtk_widget_realize(_win);
83
83
      gdk_window_set_transient_for(GDK_WINDOW(_win->window), win);
84
84
   }
85
 
 
 
85
   // if we have no parent, don't skip the taskbar hint
86
86
   if(_config->FindB("Volatile::HideMainwindow",false) && id < 0)
87
87
   {
 
88
      gtk_widget_realize(_win);
88
89
      gdk_window_set_skip_taskbar_hint(_win->window, FALSE);
89
90
      gtk_window_set_urgency_hint(GTK_WINDOW(_win), TRUE);
90
91
   }
 
92
 
91
93
}
92
94
 
93
95
bool RGGladeWindow::setLabel(const char *widget_name, const char *value)