diff --git a/centrallix-os/sys/js/htdrv_sys_osml.js b/centrallix-os/sys/js/htdrv_sys_osml.js deleted file mode 100644 index 6b722f140..000000000 --- a/centrallix-os/sys/js/htdrv_sys_osml.js +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (C) 1998-2001 LightSys Technology Services, Inc. -// -// You may use these files and this library under the terms of the -// GNU Lesser General Public License, Version 2.1, contained in the -// included file "COPYING" or http://www.gnu.org/licenses/lgpl.txt. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. - - -/** Add function to instantiate objects **/ -function cn_init(p) - { - this.type = 'cn'; - this.LSParent = p; - } - - -// Load indication -if (window.pg_scripts) pg_scripts['htdrv_sys_osml.js'] = true; diff --git a/centrallix/Makefile.in b/centrallix/Makefile.in index 7c7407f8d..f32464337 100644 --- a/centrallix/Makefile.in +++ b/centrallix/Makefile.in @@ -180,7 +180,6 @@ XWGTRDRIVERS=wgtdrv_alerter.o \ wgtdrv_scrollbar.o \ wgtdrv_scrollpane.o \ wgtdrv_spinner.o \ - wgtdrv_sys_osml.o \ wgtdrv_tab.o \ wgtdrv_table.o \ wgtdrv_template.o \ diff --git a/centrallix/wgtr/wgtdrv_sys_osml.c b/centrallix/wgtr/wgtdrv_sys_osml.c deleted file mode 100644 index 56abd5797..000000000 --- a/centrallix/wgtr/wgtdrv_sys_osml.c +++ /dev/null @@ -1,74 +0,0 @@ -#include -#include -#include -#include "obj.h" -#include "cxlib/mtask.h" -#include "cxlib/mtsession.h" -#include "wgtr.h" - -/************************************************************************/ -/* Centrallix Application Server System */ -/* Centrallix Core */ -/* */ -/* Copyright (C) 1998-2001 LightSys Technology Services, Inc. */ -/* */ -/* This program is free software; you can redistribute it and/or modify */ -/* it under the terms of the GNU General Public License as published by */ -/* the Free Software Foundation; either version 2 of the License, or */ -/* (at your option) any later version. */ -/* */ -/* This program is distributed in the hope that it will be useful, */ -/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ -/* GNU General Public License for more details. */ -/* */ -/* You should have received a copy of the GNU General Public License */ -/* along with this program; if not, write to the Free Software */ -/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA */ -/* 02111-1307 USA */ -/* */ -/* A copy of the GNU General Public License has been included in this */ -/* distribution in the file "COPYING". */ -/* */ -/* Module: wgtr/wgtdrv_sys_osml.c */ -/* Author: Matt McGill (MJM) */ -/* Creation: June 30, 2004 */ -/* Description: */ -/************************************************************************/ - - - -/*** wgtosmlVerify - allows the driver to check elsewhere in the tree - *** to make sure that the conditions it requires for proper functioning - *** are present - checking for other widgets that might be necessary, - *** checking interface versions on widgets to be interacted with, etc. - ***/ -int -wgtosmlVerify(pWgtrVerifySession s) - { - return 0; - } - - -/*** wgtosmlNew - after a node has been filled out with initial values, - *** the driver uses this function to take care of any other initialization - *** that needs to be done on a per-node basis. By far the most important - *** is declaring interfaces. - ***/ -int -wgtosmlNew(pWgtrNode node) - { - return 0; - } - - -int -wgtosmlInitialize() - { - char* name = "System:OSML Driver"; - - wgtrRegisterDriver(name, wgtosmlVerify, wgtosmlNew); - wgtrAddType(name, "sys-osml"); - - return 0; - } diff --git a/centrallix/wgtr/wgtr.c b/centrallix/wgtr/wgtr.c index 0293dfc62..960099e40 100755 --- a/centrallix/wgtr/wgtr.c +++ b/centrallix/wgtr/wgtr.c @@ -2086,7 +2086,6 @@ wgtrInitialize() wgtsbInitialize(); wgtspaneInitialize(); wgtspnrInitialize(); - wgtosmlInitialize(); wgttabInitialize(); wgttblInitialize(); wgttermInitialize(); @@ -2573,5 +2572,3 @@ wgtrGetNamespace(pWgtrNode widget) { return widget->Namespace; } - -