aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/KvsObject_window.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2015-09-28 00:45:44 +0200
committerGravatar Szymon Tomasz Stefanek2015-09-28 00:45:44 +0200
commita8b12f44d0e747d143b61c50ed4f8c580045a259 (patch)
tree6a174ffea31eb70380e88794fc67c35d8dca0d60 /src/modules/objects/KvsObject_window.cpp
parentMove the 'undock' menu entry in the middle to minimize the chance of accident... (diff)
downloadKVIrc-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.cpp6
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;
}