--- fox-1.7.85.old/calculator/Calculator.cpp +++ fox-1.7.85/calculator/Calculator.cpp @@ -1414,7 +1414,8 @@ // Change font long Calculator::onCmdDisplayFont(FXObject*,FXSelector,void*){ - FXFontDialog fontdlg(this,"Change Display Font",DECOR_BORDER|DECOR_TITLE); + FXFontDialog fontdlg(this,"Change Display Font - foxcalc",DECOR_BORDER|DECOR_TITLE); + FXFontDesc fontdesc=getDisplayFont()->getFontDesc(); fontdlg.setFontDesc(fontdesc); if(fontdlg.execute()){ @@ -1602,7 +1603,7 @@ // Popup help long Calculator::onCmdQuestion(FXObject*,FXSelector,void*){ - HelpWindow helpwindow(this,"Calculator Help"); + HelpWindow helpwindow(this,"Calculator Help - foxcalc"); helpwindow.setHelp(help); helpwindow.setX(getX()+80); helpwindow.setY(getY()+80); --- fox-1.7.85.old/calculator/Preferences.cpp +++ fox-1.7.85/calculator/Preferences.cpp @@ -33,7 +33,7 @@ // Construct Preferences::Preferences(Calculator *own):FXDialogBox(own,"Calculator Preferences",DECOR_TITLE|DECOR_BORDER|DECOR_RESIZE,0,0,0,0, 10,10,10,10, 4,4){ - setTitle(tr("Calculator Preferences")); + setTitle(tr("Calculator Preferences - foxcalc")); // Icons palette=new FXGIFIcon(getApp(),colors);