Results 1 to 8 of 8

Thread: Problem with MDI framework

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jul 2007
    Posts
    11
    Thanks
    1
    Thanked 2 Times in 2 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11

    Default Problem with MDI framework

    Hi,

    I have created one application as like follow:


    Qt Code:
    1. MainWindow::MainWindow() : QMainWindow()
    2. {
    3. QWorkspace* workspace = new QWorkspace(this);
    4. setCentralWidget(workspace);
    5. workspace->setScrollBarsEnabled(true);
    6.  
    7. QGraphicsView* view = new QGraphicsView(workspace);
    8. workspace->addWindow(view);
    9. view->showMaximized();
    10. workspace->setActiveWindow(view);
    11.  
    12. }
    To copy to clipboard, switch view to plain text mode 

    Whenever I am minimizing and then restoring the QGraphicsView window,
    I am getting following message:

    "QCoreApplication:: postEvent: Unexpected null receiver"

    Please can any body tell me why this message might be coming.

    I am working on Qt4.2.2 and Fedora core-5 application.
    Last edited by wysota; 5th July 2007 at 17:03. Reason: missing [code] tags

Similar Threads

  1. [QMYSQL] connection problem
    By chaos_theory in forum Installation and Deployment
    Replies: 5
    Last Post: 2nd July 2007, 09:52
  2. Grid Layout Problem
    By Seema Rao in forum Qt Programming
    Replies: 2
    Last Post: 4th May 2006, 12:45
  3. Problem with bitBlt
    By yellowmat in forum Newbie
    Replies: 1
    Last Post: 5th April 2006, 14:08
  4. fftw problem
    By lordy in forum General Programming
    Replies: 1
    Last Post: 16th March 2006, 21:36
  5. Replies: 16
    Last Post: 7th March 2006, 15:57

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.