]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Added <code> tag to the text output in RegWidget to make it look better on Windows...
authorasv <asv@opencascade.com>
Fri, 28 Jul 2006 10:14:12 +0000 (10:14 +0000)
committerasv <asv@opencascade.com>
Fri, 28 Jul 2006 10:14:12 +0000 (10:14 +0000)
src/TOOLSGUI/ToolsGUI_RegWidget.cxx

index b6f3e34a5d25cbaa211a54820d3cca624fe7b8a2..d09dc183014dfe8637b1a96f0f0fa5a8c1bb522d 100755 (executable)
@@ -342,6 +342,8 @@ QString ToolsGUI_RegWidget::setlongText( const Registry::Infos &c_info)
   QString a = QString( "<hr><h2>" ) + tr( "Code" ) + QString( " : " );
   a.append( QString( c_info.name ) );
   a.append( "</h1><hr><br>" );
+  a.append( "<code>" ); // ASV: 28.07.06 : added <code> tags to make the text font be 
+                        // fixed width (looks much better on Windows)
   a.append( tr( "Process Id" ) + QString( " : " ) );
   a.append( BOLD( QString::number( int( c_info.pid ) ) ) );
   a.append( QString( " " ) + tr( "on machine" ) + QString( " " ) );
@@ -400,6 +402,8 @@ QString ToolsGUI_RegWidget::setlongText( const Registry::Infos &c_info)
       a.append( BOLD( QString::number( int( c_info.difftime ) ) ) );
       a.append( QString( " " ) + tr( "seconds" ) + QString( ")<br>" ) );
     }
+  a.append( "</code>" ); // ASV: 28.07.06 : added <code> tags to make the text font be 
+                         // fixed width (looks much better on Windows)
   END_OF("setlongText");  
   return a;