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

(-)kink/kink.cpp- (-3 / +3 lines)
Lines 76-82 Link Here
76
	// Detect printers on parallel ports (if any)
76
	// Detect printers on parallel ports (if any)
77
  for(int i=0; i<PARPORT_LAST_PORT; i++)
77
  for(int i=0; i<PARPORT_LAST_PORT; i++)
78
	{
78
	{
79
	  callback = get_ink_level(PARPORT,i,&level);
79
	  callback = get_ink_level(PARPORT,"",i,&level);
80
		switch(callback)
80
		switch(callback)
81
		{
81
		{
82
		  case OK:
82
		  case OK:
Lines 91-97 Link Here
91
	// Detect printers on USB ports (if any)
91
	// Detect printers on USB ports (if any)
92
  for(int i=0; i<USB_LAST_PORT; i++)
92
  for(int i=0; i<USB_LAST_PORT; i++)
93
	{
93
	{
94
	  callback = get_ink_level(USB,i,&level);
94
	  callback = get_ink_level(USB,"",i,&level);
95
		switch(callback)
95
		switch(callback)
96
		{
96
		{
97
		  case OK:
97
		  case OK:
Lines 202-208 Link Here
202
	grpError->hide();
202
	grpError->hide();
203
	grpLevels->show();
203
	grpLevels->show();
204
204
205
	callback=get_ink_level(last_type,last_port,&level);
205
	callback=get_ink_level(last_type,"",last_port,&level);
206
	if (callback == OK)
206
	if (callback == OK)
207
	{
207
	{
208
		QProgressBar* ptrBar = 0;
208
		QProgressBar* ptrBar = 0;

Return to bug 176857