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 7875043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:55:03+00:00 2026-06-03T02:55:03+00:00

Suppose some slot was called by some QDialog based class , I create the

  • 0

Suppose some slot was called by some QDialog based class ,

I create the dialog elsewhere , e.g

 MyDialog *dlg = new MyDialog (this);
 connect (dlg , SIGNAL(valueSet(QString)) , SLOT(slotGetValue(QString)));
 dlg->exec ();

And in the slot , I delete the object by using deleting it’s “deepest” parent class , which is QObject:

 void slotGetValue (const QString & key)
 {
    // process the value we retrieved
    // now delete the dialog created
    sender()->deletLater ();
 }

Is that the correct way of doing this ? Is that safe ?

  • 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-03T02:55:04+00:00Added an answer on June 3, 2026 at 2:55 am

    There should be no reason to delete a dialog that is modal. Since QDialog::exec() blocks, the dialog can be safely deleted immediately after that returns.

    MyDialog *dlg = new MyDialog (this);
    connect (dlg , SIGNAL(valueSet(QString)) , SLOT(slotGetValue(QString)));
    dlg->exec ();
    delete (dlg);
    

    From that, you can probably guess there isn’t any need for using new and delete. You can just put it on the stack, and it will be destroyed when leaving scope. Like this:

    MyDialog dlg(this);
    connect(&dlg, SIGNAL(valueSet(QString)) , SLOT(slotGetValue(QString)));
    dlg.exec();
    

    And unless you need the this pointer in the MyDialog constructor, there’s no reason to pass it.

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

Sidebar

Related Questions

Suppose I have some Message class like the following. (This is a made-up class
Suppose I have some class which has a property actor_ of type Actor .
Suppose that I define some class: class Pixel { public: Pixel(){ x=0; y=0;}; int
suppose I have this string: some striinnngggg <a href=something/some_number>linkk</a> soooo <a href=someotherthing/not_number>asdfsadf</a> I want
I suppose in some ways either (or both) Delegate or MethodInfo qualify for this
What's the appropriate way to dispose an ImageList object? Suppose I have some class
Suppose some callback is registered for stdin . fileevent stdin readable thatCallback This means
Suppose I have some per-class data: (AandB.h) class A { public: static Persister* getPersister();
Suppose I have some XAML like this: <Window.Resources> <v:MyClass x:Key=whatever Text=foo\nbar /> </Window.Resources> Obviously
Suppose some memory location 0xF0000 contains four character string four . so is this

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.