mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
a couple of useful files
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4182 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5296e9e995
commit
07c8c3367f
39
development/TodoPlan-1.3
Normal file
39
development/TodoPlan-1.3
Normal file
@ -0,0 +1,39 @@
|
||||
Andre:
|
||||
|
||||
global
|
||||
- context sensitive keybindings
|
||||
- better .tex -> .lyx coversion
|
||||
- the "cursor stuff"
|
||||
- unify "real" insets and mathed's insets
|
||||
- David's preview stuff
|
||||
|
||||
mathed only
|
||||
- fill in gaps in AMS support
|
||||
- further work on math-extern
|
||||
- reduce memory consumption
|
||||
|
||||
John Levon:
|
||||
o GUII
|
||||
o bug fixes
|
||||
|
||||
|
||||
Martin:
|
||||
- User-definable floats (Herbert)
|
||||
- Optional arguments (short title versions)
|
||||
- Spreadsheet functionality (basic) in tabular
|
||||
- Something else I don't remember :-)
|
||||
|
||||
Michael:
|
||||
|
||||
- upgrade of libsigc version to 1.4/1.3 whatever the release version
|
||||
ends up getting called.
|
||||
- GUII
|
||||
- Gtkmm2 frontend.
|
||||
|
||||
Lgb:
|
||||
- upgrade boost
|
||||
- upgrade gettext
|
||||
- textclass as string
|
||||
- force arg check on lyxfuns
|
||||
- move towards no-next code in paragraph,cursor and row.
|
||||
- remove 1.2.x compability code.
|
32
development/boostworkaround.txt
Normal file
32
development/boostworkaround.txt
Normal file
@ -0,0 +1,32 @@
|
||||
crc.hpp:
|
||||
|
||||
@@ -280,15 +280,10 @@
|
||||
typedef typename base_type::least least;
|
||||
typedef typename base_type::fast fast;
|
||||
|
||||
-#ifdef __DECCXX
|
||||
- static const least high_bit = 1ul << (Bits - 1u);
|
||||
- static const fast high_bit_fast = 1ul << (Bits - 1u);
|
||||
-#else
|
||||
BOOST_STATIC_CONSTANT( least, high_bit = (least( 1u ) << ( Bits
|
||||
- 1u )) );
|
||||
BOOST_STATIC_CONSTANT( fast, high_bit_fast = (fast( 1u ) << ( Bits
|
||||
- 1u )) );
|
||||
-#endif
|
||||
|
||||
};
|
||||
|
||||
@@ -345,11 +340,7 @@
|
||||
BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast )
|
||||
;
|
||||
#endif
|
||||
|
||||
-#ifdef __DECCXX
|
||||
- static const least sig_bits = (~( ~(0ul) << Bits));
|
||||
-#else
|
||||
BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits ))
|
||||
);
|
||||
-#endif
|
||||
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user