diff options
| author | 2015-09-28 00:45:44 +0200 | |
|---|---|---|
| committer | 2015-09-28 00:45:44 +0200 | |
| commit | a8b12f44d0e747d143b61c50ed4f8c580045a259 (patch) | |
| tree | 6a174ffea31eb70380e88794fc67c35d8dca0d60 /src/modules/objects/KvsObject_window.cpp | |
| parent | Move the 'undock' menu entry in the middle to minimize the chance of accident... (diff) | |
| download | KVIrc-a8b12f44d0e747d143b61c50ed4f8c580045a259.tar.gz KVIrc-a8b12f44d0e747d143b61c50ed4f8c580045a259.tar.bz2 KVIrc-a8b12f44d0e747d143b61c50ed4f8c580045a259.zip | |
Bye bye MDI. I have probably introduced few minor bugs that I haven't been able to spot yet. Please report. Closes #1630.
Diffstat (limited to 'src/modules/objects/KvsObject_window.cpp')
| -rw-r--r-- | src/modules/objects/KvsObject_window.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/objects/KvsObject_window.cpp b/src/modules/objects/KvsObject_window.cpp index dad3df59f..2e8b7bd67 100644 --- a/src/modules/objects/KvsObject_window.cpp +++ b/src/modules/objects/KvsObject_window.cpp @@ -83,12 +83,12 @@ QPixmap * KviKvsScriptWindowWindow::myIconPtr() @type: class @short: - A MDI window object + A window object @inherits: [class]object[/class] [class]widget[/class] @description: - This class represents a MDI window in a KVIrc frame. + This class represents a window in a KVIrc frame. Regardless of the parent object passed, the window will be always a "physical" child of the frame window: you can't embed a window object inside a widget or another window. The parent object will just "own" this @@ -121,7 +121,7 @@ bool KvsObject_window::init(KviKvsRunTimeContext *,KviKvsVariantList *) KviKvsScriptWindowWindow * w = new KviKvsScriptWindowWindow(getName()); setObject(w); g_pMainWindow->addWindow(w,false); - w->minimize(); // must be minimized before children are added, otherwise the focus handling goes nuts... + //w->minimize(); // must be minimized before children are added, otherwise the focus handling goes nuts... return true; } |
