diff options
Diffstat (limited to 'bin/count-todo-dialogs')
-rwxr-xr-x | bin/count-todo-dialogs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/count-todo-dialogs b/bin/count-todo-dialogs index 27f5f3c5f981..c530e3631d8a 100755 --- a/bin/count-todo-dialogs +++ b/bin/count-todo-dialogs @@ -24,5 +24,13 @@ num=$(($dialogs + $tabpages)) echo An estimated additional $num .ui are required percent=$(($converted * 100 / ($num + $converted))) -echo We are $percent% of the way through. +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` + +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 |