Hello--

I've tried looking up through the database for this, but I couldn't find something exactly similar to what I'm doing. I'm using Qt 3.3 with designer (so I've got a bunch of ui.h files for my dialog boxes). In any case, I've got one parent dialog that opens a child dialog. When that child dialog does some actions, I'd like to change the color of a button on the parent dialog box to change with those actions. Is there any way to reference that parent widget from the child easily? I tried using (from inside the child widget):

parent()->buttonOne->setPaletteForegroundColor(Color)

but it doesn't like the parent() option. Perhaps I'm formatting it wrong? Thanks.

Aaron