Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add V-number to AssetView
  • Loading branch information
squinky86 committed Feb 26, 2020
1 parent 6d80949 commit dae694f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Expand Up @@ -10,6 +10,10 @@ addons:
token:
secure: "1627f17c5f4b2974c221d3b6fcd2e0c4bebb6ecf"

env:
global:
secure: BvQZRdevdbQKUW/M0evXu7CbN7xph/ukRRlZ+UTC3ZDU8onp15B9F4nH7PzJO9Jc4Npv32yChACRbU2bUSGzuvNqjL76T2nchUG5jje/3O7ORapAMSCpkpcU9375/99Bcb95rMJRJWIn15AuyFWR6K/tZcZ0uOer6J/fcfNQASjT/1Mm3nZLQsK0renwxKGoJw3DcH3noEXPaNjTZl1Eaow4vVq4RHjWjG6i5BnJLwIBgHWQ0f/mHDdnNobDHwt/8VeOPzU/5MQFc5hlc4YBKH0VdjqVKmVGI6Hd/Ct5YLklRjGyvviDO9U8VRP2oi2DoW0E4zcwM4PFMLPj+OQTf4eApx9tUX9/tT2xleJC1jpE3Wx58px0xosK1oT+fX+/A6M2wxnHQLb7k74h/v1KBLd2uNOHiXzwgzcdCLPJU31T/O0BVdiZO9DlIilBFm2nEvXsk/z86OUnuIMAbxLpS4kooNHvSdzOhucpTv+GuyOnryeZeH5UQCFZzzrV6J1yF14ywRGZucB2Gl68kOliY5f3aHXKjHOQstQaBQCfigi2+0e46BI3CvL5gLqgGgUhCr3Pl41CrwKneGy38i1yksv2JN1TRnRZABGj5d/KzR3SNALXLJ8NYLLRWPUeFC52q33yyFMOX1YQK5Hc1p8S7BsswGyEHN9JDSxB0GIEjHk=

before_install:
- sudo apt-get update -qq
- sudo apt-get install qtbase5-dev qt5-qmake qt5-default libqt5sql5-sqlite
Expand All @@ -19,7 +23,7 @@ before_install:
- pushd /tmp && wget https://github.com/jmcnamara/libxlsxwriter/archive/RELEASE_0.9.4.tar.gz && tar -zxf RELEASE_0.9.4.tar.gz && popd
- pushd /tmp/libxlsxwriter-RELEASE_0.9.4 && make && sudo make install PREFIX=/usr && popd
- pip install --user cpp-coveralls
- cpanm --quiet --notest Devel::Cover::Report::Kritika
- sudo cpanm --quiet --notest Devel::Cover::Report::Kritika

script:
- sed -i -e 's:INCLUDEPATH[ ]*=[ ]*:INCLUDEPATH = /usr/include/tidy :g' STIGQter.pro
Expand Down
2 changes: 1 addition & 1 deletion src/assetview.cpp
Expand Up @@ -329,7 +329,7 @@ void AssetView::UpdateCKLCheck(const CKLCheck &cklCheck)
*/
void AssetView::UpdateSTIGCheck(const STIGCheck &stigCheck)
{
ui->lblCheckRule->setText(stigCheck.rule);
ui->lblCheckRule->setText(stigCheck.rule + " (" + stigCheck.vulnNum + ")");
ui->lblCheckTitle->setText(stigCheck.title);
ui->cboBoxSeverity->setCurrentText(GetSeverity(stigCheck.severity));
ui->cbDocumentable->setChecked(stigCheck.documentable);
Expand Down

0 comments on commit dae694f

Please sign in to comment.