summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-25 14:08:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-25 16:45:27 +0100
commit65597c9907a895a773fd9f9c991870416bd33335 (patch)
tree11fc58a012a7808113242cada63b9a2587a1ce94 /bin
parent7cf74a8e8e5bcd6a98ab737bd6f5655a915ce589 (diff)
add WarningBox to count-todo-dialogs
Change-Id: Id56afd3bd343980aefce1039704afe0eff581208
Diffstat (limited to 'bin')
-rwxr-xr-xbin/count-todo-dialogs2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/count-todo-dialogs b/bin/count-todo-dialogs
index c530e3631d8a..9c47edbea69a 100755
--- a/bin/count-todo-dialogs
+++ b/bin/count-todo-dialogs
@@ -29,8 +29,10 @@ echo We are $percent% of the way through the .ui conversion.
errorboxes=`git grep -h ErrorBox -- *.src|cut -d' ' -f2- |sort|uniq|wc -l`
infoboxes=`git grep -h InfoBox -- *.src|cut -d' ' -f2- |sort|uniq|wc -l`
queryboxes=`git grep -h QueryBox -- *.src|cut -d' ' -f2- |sort|uniq|wc -l`
+warningboxes=`git grep -h WarningBox -- *.src|cut -d' ' -f2- |sort|uniq|wc -l`
echo
echo We need to reduce $errorboxes ErrorBox to basic strings as arguments to MessageDialog
echo We need to reduce $infoboxes InfoBox to basic strings as arguments to MessageDialog
echo We need to reduce $queryboxes QueryBox to basic strings as arguments to MessageDialog
+echo We need to reduce $warningboxes WarningBox to basic strings as arguments to MessageDialog