| 20 | } |
| 21 | |
| 22 | GDVerificationCode::GDVerificationCode(bool draw_dot, int code_num, QWidget* parent) |
| 23 | : draw_dot_(draw_dot), code_num_(code_num), QWidget(parent) |
| 24 | { |
| 25 | colors_ = new QColor[code_num_]; // 改用 QColor |
| 26 | initializeRandomSeed(QTime::currentTime().second() * 1000 + QTime::currentTime().msec()); |
| 27 | verification_code_ = GetVerificationCodeByRand(); |
| 28 | UpdateColors(); |
| 29 | } |
| 30 | |
| 31 | GDVerificationCode::~GDVerificationCode() |
| 32 | { |
nothing calls this directly
no test coverage detected