From 47b38c7d455da95d67d8869d15ed11ef419e8e27 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sat, 13 Feb 2010 12:22:34 -0800 Subject: [PATCH] Preliminary linux support (it starts up, at least...). --- qt/base/platform.py | 2 ++ qt/base/platform_lnx.py | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 qt/base/platform_lnx.py diff --git a/qt/base/platform.py b/qt/base/platform.py index 16883720..4ec172a1 100644 --- a/qt/base/platform.py +++ b/qt/base/platform.py @@ -14,5 +14,7 @@ if sys.platform == 'win32': from platform_win import * elif sys.platform == 'darwin': from platform_osx import * +elif sys.platform == 'linux2': + from platform_lnx import * else: pass # unsupported platform diff --git a/qt/base/platform_lnx.py b/qt/base/platform_lnx.py new file mode 100644 index 00000000..4f97c1fa --- /dev/null +++ b/qt/base/platform_lnx.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +# Created By: Virgil Dupras +# Created On: 2010-02-13 +# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) +# +# This software is licensed under the "HS" License as described in the "LICENSE" file, +# which should be included with this package. The terms are also available at +# http://www.hardcoded.net/licenses/hs_license + +INITIAL_FOLDER_IN_DIALOGS = '/' + +def recycle_file(path): + pass