Skip to content

Commit

Permalink
class member init fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
psemiletov committed Jul 20, 2020
1 parent 1dd6bc9 commit 2a9be2d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OS/2::File manager, double click on folders work with the right double click only

галерея шрифтов не работает в Qt 5.13+ Arch/Manjaro
shift-up/dn для выделения не работает, и никогда не работала
shift-up/dn для выделения в ФП не работает, и никогда не работала
cmake dist creates wrong tarball that cannot be build with meson

JAMSpell support? (https://github.com/bakwc/JamSpell)
Expand Down
5 changes: 3 additions & 2 deletions calendar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,10 @@ int moon_phase_by_algo (int v, int year, int month, int day)
}


CCalendarWidget::CCalendarWidget (QWidget *parent, const QString &a_dir_days): QCalendarWidget (parent), dir_days {a_dir_days}
CCalendarWidget::CCalendarWidget (QWidget *parent, const QString &a_dir_days): QCalendarWidget (parent)
//, dir_days {a_dir_days}
{
//dir_days = a_dir_days;
dir_days = a_dir_days;
moon_phase_algo = MOON_PHASE_TRIG2;
moon_mode = false;
moon_tiles.load (":/images/moon-phases.png");
Expand Down
1 change: 0 additions & 1 deletion spellchecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@

#ifdef ASPELL_ENABLE


QString aspell_default_dict_path()
{
QString r;
Expand Down
2 changes: 1 addition & 1 deletion spellchecker.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class CSpellchecker

CSpellchecker (const QString &lang,
const QString &path,
const QString &user): initialized {false} {};
const QString &user): initialized (false) {};

virtual ~CSpellchecker() {};

Expand Down

0 comments on commit 2a9be2d

Please sign in to comment.