Changeset 6332 for trunk/qt4-gui/src

Show
Ignore:
Timestamp:
06/17/08 16:49:11 (5 months ago)
Author:
eugene
Message:

Two more places for ppidString...

Location:
trunk/qt4-gui/src/core
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/core/licqgui.cpp

    r6319 r6332  
    14041404  if (u == NULL) 
    14051405  { 
    1406     gLog.Warn("%sLicqGui::userUpdated(): Invalid user received: %s\n", 
    1407       L_ERRORxSTR, id.toLatin1().data()); 
     1406    char* ppidString = PPIDSTRING(ppid); 
     1407    gLog.Warn("%sLicqGui::userUpdated(): Invalid user received: %s (%s)\n", 
     1408      L_ERRORxSTR, id.toLatin1().data(), ppidString); 
     1409    delete[] ppidString; 
    14081410    return; 
    14091411  } 
  • trunk/qt4-gui/src/core/mainwin.cpp

    r6322 r6332  
    636636      if (u == NULL) 
    637637      { 
    638         gLog.Warn("%sMainWindow::slot_updatedUser(): Invalid user received: %s\n", 
    639           L_ERRORxSTR, id.toLatin1().data()); 
     638        char* ppidString = PPIDSTRING(ppid); 
     639        gLog.Warn("%sMainWindow::slot_updatedUser(): Invalid user received: %s (%s)\n", 
     640          L_ERRORxSTR, id.toLatin1().data(), ppidString); 
     641        delete[] ppidString; 
    640642        break; 
    641643      }