diff options
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; } |
