Closed
Bug 252788
Opened 21 years ago
Closed 21 years ago
GTK2 file picker patch fails to build on AIX
Categories
(Core :: XUL, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: pkwarren, Assigned: pkwarren)
Details
Attachments
(1 file)
725 bytes,
patch
|
caillon
:
review+
blizzard
:
superreview+
|
Details | Diff | Splinter Review |
The latest patch for the GTK2 file picker fails to build on AIX with the
following error messages:
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 69.1: 1540-0033 (S) A typedef declaration must declare a name.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 70.1: 1540-0033 (S) A typedef declaration must declare a name.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 82.18: 1540-0001 (S) A typedef must not have an initializer.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 91.16: 1540-0001 (S) A typedef must not have an initializer.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 92.16: 1540-0001 (S) A typedef must not have an initializer.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 93.16: 1540-0001 (S) A typedef must not have an initializer.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 94.22: 1540-0040 (S) The text "*" is unexpected. "GtkFileFilter" may be
undeclared or ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 95.16: 1540-0001 (S) A typedef must not have an initializer.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 96.16: 1540-0001 (S) A typedef must not have an initializer.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 100.2: 1540-0040 (S) The text "_gtk_file_chooser_get_filename" is
unexpected. "_gtk_file_chooser_get_filename_fn" may be undeclared or ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 102.2: 1540-0040 (S) The text "_gtk_file_chooser_set_select_multiple" is
unexpected. "_gtk_file_chooser_set_select_multiple_fn" may be undeclared or
ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 103.2: 1540-0040 (S) The text "_gtk_file_chooser_set_current_name" is
unexpected. "_gtk_file_chooser_set_current_name_fn" may be undeclared or ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 104.2: 1540-0040 (S) The text "_gtk_file_chooser_add_filter" is unexpected.
"_gtk_file_chooser_add_filter_fn" may be undeclared or ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 105.2: 1540-0040 (S) The text "_gtk_file_filter_new" is unexpected.
"_gtk_file_filter_new_fn" may be undeclared or ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 106.2: 1540-0040 (S) The text "_gtk_file_filter_add_pattern" is unexpected.
"_gtk_file_filter_add_pattern_fn" may be undeclared or ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 107.2: 1540-0040 (S) The text "_gtk_file_filter_set_name" is unexpected.
"_gtk_file_filter_set_name_fn" may be undeclared or ambiguous.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 219.69: 1540-0063 (S) The text ")" is unexpected.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 478.60: 1540-0063 (S) The text ")" is unexpected.
"/home/pkw/sb/mozilla/trunk-devel/mozilla/widget/src/gtk2/nsFilePicker.cpp",
line 138.73: 1540-0063 (S) The text "func" is unexpected.
I will post a patch which fixes the problem.
Assignee | ||
Comment 1•21 years ago
|
||
Very simple patch which fixes the problem.
Assignee | ||
Updated•21 years ago
|
Attachment #154122 -
Flags: review?(caillon)
Comment 2•21 years ago
|
||
Comment on attachment 154122 [details] [diff] [review]
Patch v1
r=me for the changes, but it should probably be:
typedef struct _GtkFileChooser GtkFileChooser;
typedef struct _GtkFileFilter GtkFileFilter;
(note the leading '_')
Attachment #154122 -
Flags: review?(caillon) → review+
Assignee | ||
Comment 3•21 years ago
|
||
Comment on attachment 154122 [details] [diff] [review]
Patch v1
Chris: Can you sr this patch? I'll add the changes suggested by caillon.
Attachment #154122 -
Flags: superreview?(blizzard)
Comment 4•21 years ago
|
||
Comment on attachment 154122 [details] [diff] [review]
Patch v1
Yeah, you should fix the underscores but it's fine other than that.
Attachment #154122 -
Flags: superreview?(blizzard) → superreview+
Assignee | ||
Comment 5•21 years ago
|
||
Fixed.
Checking in nsFilePicker.cpp;
/cvsroot/mozilla/widget/src/gtk2/nsFilePicker.cpp,v <-- nsFilePicker.cpp
new revision: 1.2; previous revision: 1.1
done
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•