Commit f613b27d authored by Claes Sjofors's avatar Claes Sjofors

Xtt login window argument fix

parent 4a4b355d
...@@ -224,7 +224,7 @@ XttSevHist *XttTblGtk::sevhist_new( pwr_tOid *oidv, pwr_tOName *anamev, pwr_tONa ...@@ -224,7 +224,7 @@ XttSevHist *XttTblGtk::sevhist_new( pwr_tOid *oidv, pwr_tOName *anamev, pwr_tONa
GtkWidget *w; GtkWidget *w;
return new XttSevHistGtk( (void *)this, toplevel, "Process History", &w, oidv, anamev, onamev, return new XttSevHistGtk( (void *)this, toplevel, "Process History", &w, oidv, anamev, onamev,
sevhistobjectv, sevcli, 0, 0, 0, 0, sts); sevhistobjectv, sevcli, 0, 0, 0, 0, 0, sts);
} }
CoLogin *XttTblGtk::login_new( const char *name, CoLogin *XttTblGtk::login_new( const char *name,
...@@ -233,7 +233,7 @@ CoLogin *XttTblGtk::login_new( const char *name, ...@@ -233,7 +233,7 @@ CoLogin *XttTblGtk::login_new( const char *name,
void (* bc_cancel)( void *), void (* bc_cancel)( void *),
pwr_tStatus *status) pwr_tStatus *status)
{ {
return new CoLoginGtk( this, toplevel, name, groupname, bc_success, bc_cancel, status); return new CoLoginGtk( this, toplevel, name, groupname, bc_success, bc_cancel, 0, status);
} }
void XttTblGtk::activate_command( GtkWidget *w, gpointer data) void XttTblGtk::activate_command( GtkWidget *w, gpointer data)
......
...@@ -331,7 +331,7 @@ WbGtk::WbGtk( int argc, char *argv[]) : mainwindow(0) ...@@ -331,7 +331,7 @@ WbGtk::WbGtk( int argc, char *argv[]) : mainwindow(0)
} }
else if ( login_display) else if ( login_display)
new CoLoginGtk( NULL, mainwindow, "PwR Login", systemgroup, new CoLoginGtk( NULL, mainwindow, "PwR Login", systemgroup,
&Wb::login_success, &Wb::login_cancel, &sts); &Wb::login_success, &Wb::login_cancel, 0, &sts);
strcpy( title, "PwR Development "); strcpy( title, "PwR Development ");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment