vlc | branch: master | Marvin Scholz <[email protected]> | Sun Nov 26 04:18:09 2017 +0100| [50e1f0711f918ae9cb1771f785b6cd32b92b1577] | committer: Marvin Scholz
qt: Remove macOS specific searchlineedit file This is not used anymore. Ref. #7279 > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=50e1f0711f918ae9cb1771f785b6cd32b92b1577 --- modules/gui/qt/util/searchlineedit_mac.mm | 61 ------------------------------- 1 file changed, 61 deletions(-) diff --git a/modules/gui/qt/util/searchlineedit_mac.mm b/modules/gui/qt/util/searchlineedit_mac.mm deleted file mode 100644 index 3ab386288e..0000000000 --- a/modules/gui/qt/util/searchlineedit_mac.mm +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation ([email protected]) -** -** This file is part of the demonstration applications of the Qt Toolkit. -** -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at [email protected]. -** -****************************************************************************/ - -#include "searchlineedit.hpp" - -#ifdef Q_OS_MAC - -#include <Cocoa/Cocoa.h> - -//![0] -SearchLineEdit::SearchLineEdit(QWidget *parent) - : QMacCocoaViewContainer(0, parent) -{ - // Many Cocoa objects create temporary autorelease objects, - // so create a pool to catch them. - @autoreleasepool { - // Create the NSSearchField, set it on the QCocoaViewContainer. - NSSearchField *search = [[NSSearchField alloc] init]; - setCocoaView(search); - [[search cell] setPlaceholderString:@"Search..."]; - - // Use a Qt menu for the search field menu. - // NSMenu *nsMenu = searchMenu->macMenu(0); - // [[search cell] setSearchMenuTemplate:nsMenu]; - - // Release our reference, since our super class takes ownership and we - // don't need it anymore. - [search release]; - } -} -//![0] - -#endif // Q_OS_MAC _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
