widgets: policycheck_view - use constants

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-07-15 00:02:17 +02:00
parent 8ca257bf5c
commit 3d913e7127
2 changed files with 2 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ pub static ID_POLICY_CHECK_LABEL_RESULT: &'static str = "policy_check_label_resu
pub static ID_POLICY_CHECK_POLICY_NUMBER: &'static str = "policy_check_policy_number";
pub static ID_POLICY_CHECK_PROGRESS_POPUP: &'static str = "policy_check_progress_popup";
pub static ID_POLICY_CHECK_PROGRESS_BAR: &'static str = "policy_check_progress_bar";
pub static ID_POLICY_CHECK_PROGRESS_TIME: &'static str = "policy_check_progress_time";
pub static ID_POLICY_CHECK_PROGRESS_TEXT: &'static str = "policy_check_progress_text";
pub static ID_POLICY_CHECK_RESULT: &'static str = "policy_check_result";
pub static ID_POLICY_CHECK_WIDGET: &'static str = "policy_check_widget";

View File

@@ -8,8 +8,8 @@
use orbtk::prelude::*;
use crate::{
data::constants::*,
data::structures::PolicyCheck,
data::keys::*,
callbacks::policycheck_state::*,
};