Loading common/edaappl.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -335,7 +335,7 @@ void EDA_APP::InitEDA_Appl( const wxString& aName, EDA_APP_T aId ) /* Init parameters for configuration */ SetVendorName( wxT( "KiCad" ) ); SetAppName( aName ); SetAppName( aName.Lower() ); SetTitle( aName ); m_settings = new wxConfig(); wxASSERT( m_settings != NULL ); Loading cvpcb/cvpcb.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,7 @@ bool EDA_APP::OnInit() wxString message; CVPCB_MAINFRAME* frame = NULL; InitEDA_Appl( wxT( "CvPCB" ), APP_CVPCB_T ); InitEDA_Appl( wxT( "CvPcb" ), APP_CVPCB_T ); if( m_Checker && m_Checker->IsAnotherRunning() ) { Loading eeschema/eeschema.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -124,7 +124,7 @@ bool EDA_APP::OnInit() wxFileName filename; SCH_EDIT_FRAME* frame = NULL; InitEDA_Appl( wxT( "EESchema" ), APP_EESCHEMA_T ); InitEDA_Appl( wxT( "Eeschema" ), APP_EESCHEMA_T ); if( m_Checker && m_Checker->IsAnotherRunning() ) { Loading eeschema/schframe.cpp +8 −10 Original line number Diff line number Diff line Loading @@ -977,9 +977,8 @@ void SCH_EDIT_FRAME::UpdateTitle() if( GetScreen()->GetFileName() == m_DefaultSchematicFileName ) { wxString msg = wxGetApp().GetAppName() + wxT( " " ) + GetBuildVersion(); title.Printf( wxT( "%s [%s]" ), GetChars( msg), GetChars( GetScreen()->GetFileName() ) ); SetTitle( title ); title.Printf( wxT( "Eeschema %s [%s]" ), GetChars( GetBuildVersion() ), GetChars( GetScreen()->GetFileName() ) ); } else { Loading @@ -989,12 +988,10 @@ void SCH_EDIT_FRAME::UpdateTitle() // passed to LoadOneEEFile() which omits the path on non-root schematics. // Making the path absolute solves this problem. fn.MakeAbsolute(); title = wxChar( '[' ); title << fn.GetName() << wxChar( ' ' ); title << m_CurrentSheet->PathHumanReadable() << wxChar( ']' ); title << wxChar( ' ' ); title << wxChar( '(' ) << fn.GetPath() << wxChar( ')' ); title.Printf( wxT( "[ %s %s] (%s)" ), GetChars( fn.GetName() ), GetChars( m_CurrentSheet->PathHumanReadable() ), GetChars( fn.GetPath() ) ); if( fn.FileExists() ) { Loading @@ -1004,6 +1001,7 @@ void SCH_EDIT_FRAME::UpdateTitle() else title << _( " [no file]" ); SetTitle( title ); } SetTitle( title ); } gerbview/gerbview_frame.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -451,7 +451,7 @@ void GERBVIEW_FRAME::UpdateTitleAndInfo() // Display the gerber filename if( gerber == NULL ) { text = wxGetApp().GetAppName() + wxT( " " ) + GetBuildVersion(); text.Printf( wxT( "GerbView %s" ), GetChars( GetBuildVersion() ) ); SetTitle( text ); SetStatusText( wxEmptyString, 0 ); text.Printf( _( "Layer %d not in use" ), getActiveLayer() + 1 ); Loading Loading
common/edaappl.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -335,7 +335,7 @@ void EDA_APP::InitEDA_Appl( const wxString& aName, EDA_APP_T aId ) /* Init parameters for configuration */ SetVendorName( wxT( "KiCad" ) ); SetAppName( aName ); SetAppName( aName.Lower() ); SetTitle( aName ); m_settings = new wxConfig(); wxASSERT( m_settings != NULL ); Loading
cvpcb/cvpcb.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,7 @@ bool EDA_APP::OnInit() wxString message; CVPCB_MAINFRAME* frame = NULL; InitEDA_Appl( wxT( "CvPCB" ), APP_CVPCB_T ); InitEDA_Appl( wxT( "CvPcb" ), APP_CVPCB_T ); if( m_Checker && m_Checker->IsAnotherRunning() ) { Loading
eeschema/eeschema.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -124,7 +124,7 @@ bool EDA_APP::OnInit() wxFileName filename; SCH_EDIT_FRAME* frame = NULL; InitEDA_Appl( wxT( "EESchema" ), APP_EESCHEMA_T ); InitEDA_Appl( wxT( "Eeschema" ), APP_EESCHEMA_T ); if( m_Checker && m_Checker->IsAnotherRunning() ) { Loading
eeschema/schframe.cpp +8 −10 Original line number Diff line number Diff line Loading @@ -977,9 +977,8 @@ void SCH_EDIT_FRAME::UpdateTitle() if( GetScreen()->GetFileName() == m_DefaultSchematicFileName ) { wxString msg = wxGetApp().GetAppName() + wxT( " " ) + GetBuildVersion(); title.Printf( wxT( "%s [%s]" ), GetChars( msg), GetChars( GetScreen()->GetFileName() ) ); SetTitle( title ); title.Printf( wxT( "Eeschema %s [%s]" ), GetChars( GetBuildVersion() ), GetChars( GetScreen()->GetFileName() ) ); } else { Loading @@ -989,12 +988,10 @@ void SCH_EDIT_FRAME::UpdateTitle() // passed to LoadOneEEFile() which omits the path on non-root schematics. // Making the path absolute solves this problem. fn.MakeAbsolute(); title = wxChar( '[' ); title << fn.GetName() << wxChar( ' ' ); title << m_CurrentSheet->PathHumanReadable() << wxChar( ']' ); title << wxChar( ' ' ); title << wxChar( '(' ) << fn.GetPath() << wxChar( ')' ); title.Printf( wxT( "[ %s %s] (%s)" ), GetChars( fn.GetName() ), GetChars( m_CurrentSheet->PathHumanReadable() ), GetChars( fn.GetPath() ) ); if( fn.FileExists() ) { Loading @@ -1004,6 +1001,7 @@ void SCH_EDIT_FRAME::UpdateTitle() else title << _( " [no file]" ); SetTitle( title ); } SetTitle( title ); }
gerbview/gerbview_frame.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -451,7 +451,7 @@ void GERBVIEW_FRAME::UpdateTitleAndInfo() // Display the gerber filename if( gerber == NULL ) { text = wxGetApp().GetAppName() + wxT( " " ) + GetBuildVersion(); text.Printf( wxT( "GerbView %s" ), GetChars( GetBuildVersion() ) ); SetTitle( text ); SetStatusText( wxEmptyString, 0 ); text.Printf( _( "Layer %d not in use" ), getActiveLayer() + 1 ); Loading