Skip to content

Commit

Permalink
Fix window titles (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug committed Jul 15, 2024
1 parent 8a1efd9 commit e86addd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions source/form.fbp
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@
<property name="size"></property>
<property name="style">wxDEFAULT_DIALOG_STYLE</property>
<property name="subclass">; ; forward_declare</property>
<property name="title">Personal License Manual Activation</property>
<property name="title">Activate License via Webpage</property>
<property name="tooltip"></property>
<property name="two_step_creation">0</property>
<property name="window_extra_style"></property>
Expand Down Expand Up @@ -3816,7 +3816,7 @@
<property name="size"></property>
<property name="style">wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER</property>
<property name="subclass">; ; forward_declare</property>
<property name="title">Activate Plus/Pro License</property>
<property name="title">Activate License with Serial #</property>
<property name="tooltip"></property>
<property name="two_step_creation">0</property>
<property name="window_extra_style"></property>
Expand Down
4 changes: 2 additions & 2 deletions source/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class PersonalActivationDlgBase : public wxDialog

public:

PersonalActivationDlgBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Personal License Manual Activation"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE );
PersonalActivationDlgBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Activate License via Webpage"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE );

~PersonalActivationDlgBase();

Expand Down Expand Up @@ -197,7 +197,7 @@ class PlusProActivationDlgBase : public wxDialog

public:

PlusProActivationDlgBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Activate Plus/Pro License"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
PlusProActivationDlgBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Activate License with Serial #"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );

~PlusProActivationDlgBase();

Expand Down

0 comments on commit e86addd

Please sign in to comment.