1

I want to create some custom widgets for my Qt application and thus I need to reimplement some slots.
Now I searched the Qt source code and found i.e. the cpp file of QSlider (see here). I looked for the implementation of setValue(int), and it is mentioned in the comments a few times, but I couldn't find the implementation.
This led me to the conclusion that either the source code is not complete or that I'm missing something.

1
  • 5
    The source is absolutely complete. Kind of pointless to build if it was missing parts. And I have built Qt dozens of times. Commented Jan 28, 2014 at 23:51

1 Answer 1

3

The method setValue is inherited from QAbstractSlider, you can see its source here.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.