Preliminary linux support (it starts up, at least...).

This commit is contained in:
Virgil Dupras 2010-02-13 12:22:34 -08:00
parent 0e97bec7b2
commit 47b38c7d45
2 changed files with 15 additions and 0 deletions

View File

@ -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

13
qt/base/platform_lnx.py Normal file
View File

@ -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