Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8579669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:39:30+00:00 2026-06-11T20:39:30+00:00

I made a new class named PageRangeListWidgetItem which inherits from QListWidgetItem class PageRangeListWidgetItem :

  • 0

I made a new class named PageRangeListWidgetItem which inherits from QListWidgetItem

class PageRangeListWidgetItem : public QListWidgetItem
{
    ...
    private:
        int start, end;

        bool operator<(const PageRangeListWidgetItem &other) const {
            if (start == other.start)
                return end < other.end;
            return start < other.start;
        }
};

and these items are being added to a QListWidget through user input. The QListWidget contains only these PageRangeListWidgetItem’s, so I hoped that by calling the sortItems() function of the QListWidget, that it would use the overloaded operator< to sort the items to my liking, but unfortunately it doesn’t, it keeps on sorting the list as if it contained pure QListWidgetItems.

How can I change this behaviour? Do I have to create a custom QListWidget class or is there an easier way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T20:39:31+00:00Added an answer on June 11, 2026 at 8:39 pm

    The < function that is called by Qt’s framework is

    virtual bool operator<(const QListWidgetItem &other) const
    

    The one you have defined does not match this function signature (PageRangeListWidgetItem instead of QListWidgetItem), and thus does not override the virtual function and doesn’t get called.

    You need to write a < function that takes in a QListWidgetItem and uses that object to sort rather than your custom object.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I create a new Exception different from the pre-made types? public class
I made a new action filter (attribute, similar to [Authorize]) which authorizes access to
I made the following simulation: byte[] b = new byte[256]; for (int i =
I made a new widget following the LatestTwitter example from Maarten Balliauw. My project
I made a custom Class named MedinetParse that parses a webrequest. The parsed data
I've made a class named Client and the definition goes below in client.h: #ifndef
I have made an JSR 168 portlet as follows: public class GetTest extends GenericPortlet
I have made a new Excel 2010 Add-in project, with VS10. When I run
I added a new file F1 and made changes to another file F2 but
I made a small winforms application to monitor a certain folder for new pdf

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.