Skip to content

Commit

Permalink
LemonLime 可以调整颜色啦
Browse files Browse the repository at this point in the history
  • Loading branch information
iotang committed Mar 2, 2020
1 parent 444605d commit 9dbeeba
Show file tree
Hide file tree
Showing 15 changed files with 1,161 additions and 356 deletions.
5 changes: 5 additions & 0 deletions contest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ void Contest::setSettings(Settings *_settings)
settings = _settings;
}

void Contest::copySettings(Settings &_settings)
{
_settings.copyFrom(settings);
}

void Contest::setContestTitle(const QString &title)
{
contestTitle = title;
Expand Down
1 change: 1 addition & 0 deletions contest.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class Contest : public QObject
public:
explicit Contest(QObject *parent = nullptr);
void setSettings(Settings *);
void copySettings(Settings &);
void setContestTitle(const QString &);
const QString &getContestTitle() const;
Task *getTask(int) const;
Expand Down
Loading

0 comments on commit 9dbeeba

Please sign in to comment.