mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
OK cant wait any longer for my new gcc to compile so I'm stopping playing with the converter dialog
This commit is contained in:
parent
26a08486fa
commit
c28e7b7c34
@ -13,7 +13,7 @@
|
|||||||
## with this program; if not, write to the Free Software Foundation, Inc.,
|
## with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
''' E-book management software'''
|
''' E-book management software'''
|
||||||
__version__ = "0.4.7"
|
__version__ = "0.4.8"
|
||||||
__docformat__ = "epytext"
|
__docformat__ = "epytext"
|
||||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||||
__appname__ = 'libprs500'
|
__appname__ = 'libprs500'
|
||||||
@ -49,7 +49,7 @@ def load_library(name, cdll):
|
|||||||
if isosx:
|
if isosx:
|
||||||
name += '.dylib'
|
name += '.dylib'
|
||||||
if hasattr(sys, 'frameworks_dir'):
|
if hasattr(sys, 'frameworks_dir'):
|
||||||
return cdll.LoadLibrary(os.path.join(sys.frameworks_dir, name))
|
return cdll.LoadLibrary(os.path.join(getattr(sys, 'frameworks_dir'), name))
|
||||||
return cdll.LoadLibrary(name)
|
return cdll.LoadLibrary(name)
|
||||||
return cdll.LoadLibrary(name+'.so')
|
return cdll.LoadLibrary(name+'.so')
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>789</width>
|
<width>866</width>
|
||||||
<height>570</height>
|
<height>570</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -78,11 +78,8 @@
|
|||||||
<property name="movement" >
|
<property name="movement" >
|
||||||
<enum>QListView::Static</enum>
|
<enum>QListView::Static</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="gridSize" >
|
<property name="spacing" >
|
||||||
<size>
|
<number>10</number>
|
||||||
<width>150</width>
|
|
||||||
<height>100</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
</property>
|
||||||
<property name="viewMode" >
|
<property name="viewMode" >
|
||||||
<enum>QListView::IconMode</enum>
|
<enum>QListView::IconMode</enum>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user