Hi, On Fri, Jan 25, 2013 at 11:05 PM, Rushi Shukla <[email protected]> wrote: > Hello > > I am trying to make code changes to the file > core/vcl/source/control/combobox.cxx but I have the following errors : > > > core/vcl/source/control/combobox.cxx: In member function ‘virtual void > ComboBox::Resize()’: > core/vcl/source/control/combobox.cxx:601:9: error: ‘ComboBoxBounds’ was not > declared in this scope > core/vcl/source/control/combobox.cxx:601:24: error: expected ‘;’ before > ‘aBounds’ > core/vcl/source/control/combobox.cxx:603:36: error: ‘aBounds’ was not > declared in this scope > core/vcl/source/control/combobox.cxx: In member function ‘virtual Size > ComboBox::CalcMinimumSize() const’: > core/vcl/source/control/combobox.cxx:1072:9: error: ‘ComboBoxBounds’ was not > declared in this scope > core/vcl/source/control/combobox.cxx:1072:24: error: expected ‘;’ before > ‘aBounds’ > core/vcl/source/control/combobox.cxx:1073:24: error: ‘aBounds’ was not > declared in this scope > core/vcl/source/control/combobox.cxx: At global scope: > core/vcl/source/control/combobox.cxx:1498:1: error: ‘ComboBoxBounds’ in > ‘class ComboBox’ does not name a type > > None of my code changes is shown in the errors list and maybe I think the > commit here produces some changes which might be the cause of the errors : > > http://cgit.freedesktop.org/libreoffice/core/commit/?id=d19eab221f168aed12249ffc8a36a9f1aca5a94e >
What do your changes look like? You might have added a new data member before struct ComboBoxBounds declaration, but missing a semicolon, which would make the struct appear undeclared. This could in fact be anything. If this code does compile when unchanged (and it does for me), then we can't tell anything without seeing your changes. > Need help on this . Any sort of assistance is appreciated . > > Regards , > Rushi > > _______________________________________________ > LibreOffice mailing list > [email protected] > http://lists.freedesktop.org/mailman/listinfo/libreoffice > Regards, Ruslan _______________________________________________ LibreOffice mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice
