I just start reading about wxWidgets, and I'm not sure of this improvements, but I think that might be correct.
Some changes/improvements in file: (only this file)
boinc/clientgui/DlgAdvPreferencesBase.cpp
Add string:
m_panelNetSpecialTimes->SetHorizontalSpacing(3);
on line 350.
Add string:
m_txtProcEveryDayStart->SetHorizontalSpacing(3);
on line 112.
It adds horizontal margin in panel.
Repalce line: (no. 350)
m_panelNetSpecialTimes->SetToolTip( wxT("use network on thursday") );
with line:
m_panelNetSpecialTimes->SetToolTip( wxT("use network on selected day or days") );
or delete'''
Why thursday?
Add string on line 331:
m_txtNetEveryDayStart->SetMaxLength(5); // set "5" as maximum number of characters
Add string on line 339:
m_txtNetEveryDayStop->SetMaxLength(5);
Add string on line 112:
m_txtProcEveryDayStart->SetMaxLength(5);
Add string on line 120:
m_txtProcEveryDayStop->SetMaxLength(5);
Set "5" as maximum number of characters in "TextCrtl?" (for example 00:00). No way to use more than 5 characters!
Add string on line 229:
m_txtProcUseCPUTime->SetMaxLength(6); // set "6" as maximum number of characters
Add string on line 463:
m_txtDiskMaxOfTotal->SetMaxLength(6);
Add string on line 483:
m_txtDiskMaxSwap->SetMaxLength(6);
Add string on line 505:
m_txtMemoryMaxInUse->SetMaxLength(6);
Add string on line 514:
m_txtMemoryMaxOnIdle->SetMaxLength(6);
Set "6" as maximum number of characters in TextCrtl? (for example 100,00 or 65,21). There are "%" value fields. No way to use more than 6 characters!