mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-01-30 12:22:36 -08:00
small revisions
This commit is contained in:
parent
e7c371aeea
commit
f0ab71b30b
4 changed files with 13 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -10,6 +10,7 @@
|
|||
*.so*
|
||||
*.DS_Store
|
||||
*.qm
|
||||
*.qmlc
|
||||
*.ts
|
||||
*~
|
||||
*.~
|
||||
|
|
|
|||
|
|
@ -88,9 +88,12 @@
|
|||
(qt-object-? (qfind-child (root-item) object-name))))
|
||||
|
||||
(defun quick-item (item/name)
|
||||
(if (stringp item/name)
|
||||
(find-quick-item item/name)
|
||||
item/name))
|
||||
(cond ((stringp item/name)
|
||||
(find-quick-item item/name))
|
||||
((qt-object-p item/name)
|
||||
item/name)
|
||||
((not item/name)
|
||||
(root-item))))
|
||||
|
||||
(defun children (item/name)
|
||||
(|childItems| (quick-item item/name)))
|
||||
|
|
|
|||
|
|
@ -88,9 +88,12 @@
|
|||
(qt-object-? (qfind-child (root-item) object-name))))
|
||||
|
||||
(defun quick-item (item/name)
|
||||
(if (stringp item/name)
|
||||
(find-quick-item item/name)
|
||||
item/name))
|
||||
(cond ((stringp item/name)
|
||||
(find-quick-item item/name))
|
||||
((qt-object-p item/name)
|
||||
item/name)
|
||||
((not item/name)
|
||||
(root-item))))
|
||||
|
||||
(defun children (item/name)
|
||||
(|childItems| (quick-item item/name)))
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@
|
|||
#include <QtMultimedia>
|
||||
#include <QtMultimediaWidgets>
|
||||
|
||||
// Q_DECLARE_METATYPE(...)
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
#define LIB_EXPORT __declspec(dllexport)
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue