main_window.cpp: In function ‘QStringList build_file_open_type_list()’:
main_window.cpp:249:50: error: cannot call constructor ‘QString::QString’ directly [-fpermissive]
main_window.cpp:249:50: error:   for a function-style cast, remove the redundant ‘::QString’ [-fpermissive]


svn path=/trunk/; revision=40741
This commit is contained in:
Alexis La Goutte 2012-01-27 16:49:54 +00:00
parent 6d213e71bd
commit d307494e07
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ build_file_open_type_list(void) {
/* Add the "All Files" entry. */
filters << QString::QString("All Files (*.*)");
filters << QString("All Files (*.*)");
/* Include all the file types Wireshark supports. */
for (ft = 0; ft < WTAP_NUM_FILE_TYPES; ft++) {