[LyX/master] Fix documentation of UndoGroupHelper

2021-11-12 Thread Jean-Marc Lasgouttes
commit 3aab9ad25edcd527868f8f2b8a26262255952966
Author: Jean-Marc Lasgouttes 
Date:   Fri Nov 12 16:47:41 2021 +0100

Fix documentation of UndoGroupHelper
---
 src/Undo.h |9 -
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/Undo.h b/src/Undo.h
index 887f762..bdcf954 100644
--- a/src/Undo.h
+++ b/src/Undo.h
@@ -130,19 +130,18 @@ private:
 
 /** Helper class to simplify the use of undo groups across several buffers.
  *
- *  The undo group is created when the object is instanciated; it is
+ *  The undo group is created when the object is instantiated; it is
  *  then ended as the object goes out of scope or the buffer is reset
  *  (see below)
  */
 class UndoGroupHelper {
 public:
+   // Create a new undo group for buffer \c buf.
UndoGroupHelper(Buffer * buf);
-
+   // End all created undo groups.
~UndoGroupHelper();
 
-   /** Close the current undo group if necessary and create a new one
-* for buffer \c buf.
-*/
+   // Create an additional undo group for buffer \c buf.
void resetBuffer(Buffer * buf);
 
 private:
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs


[LyX/master] Fix Bullets panel (#12429)

2021-11-12 Thread Juergen Spitzmueller
commit 16ce82d4f9f89b57cfa69f469b087c2805018d57
Author: Juergen Spitzmueller 
Date:   Fri Nov 12 16:40:46 2021 +0100

Fix Bullets panel (#12429)
---
 src/frontends/qt/BulletsModule.cpp |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/frontends/qt/BulletsModule.cpp 
b/src/frontends/qt/BulletsModule.cpp
index 3d6ad9c..0572f67 100644
--- a/src/frontends/qt/BulletsModule.cpp
+++ b/src/frontends/qt/BulletsModule.cpp
@@ -206,7 +206,7 @@ void BulletsModule::setupPanel(QListWidget * lw, QString 
const & panelname,
QPixmap pixmap = getPixmap("images/" + toqstr(folder) + "/", 
toqstr(iconname), "svgz");
QIcon icon(pixmap);
icon.addPixmap(getSelectedPixmap(pixmap, icon_size), 
QIcon::Selected);
-   QListWidgetItem * lwi = new QListWidgetItem(icon, QString());
+   QListWidgetItem * lwi = new QListWidgetItem(icon, QString(), 0, 
i);
lwi->setToolTip(toqstr(Bullet::bulletEntry(font, i)));
lwi->setSizeHint(icon_size);
lw->addItem(lwi);
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs


[LyX/master] FindAdv: Added handling of 0x019b

2021-11-12 Thread Kornel Benko
commit 20fd104cf28dfe49f97b21d8c7a615fd97a17faa
Author: Kornel Benko 
Date:   Fri Nov 12 13:29:22 2021 +0100

FindAdv: Added handling of 0x019b
---
 src/lyxfind.cpp |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp
index 86cf64d..4310d16 100644
--- a/src/lyxfind.cpp
+++ b/src/lyxfind.cpp
@@ -1525,6 +1525,7 @@ void static fillMissingUnicodesymbols()
   addAccents("\\textdiv", getutf8(0x00f7));
   addAccents("\\div", getutf8(0x00f7));
   addAccents("\\o", getutf8(0x00f8));
+  addAccents("\\textcrlambda", getutf8(0x019b));
   addAccents("\\j", getutf8(0x0237));
   addAccents("\\textalpha", getutf8(0x03b1));
   addAccents("\\alpha", getutf8(0x03b1));
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs


[LyX/master] Support 0x019b via tipa (#12426)

2021-11-12 Thread Juergen Spitzmueller
commit ea475c0ce6636f02244fe8142a8d77dd1493f4e5
Author: Juergen Spitzmueller 
Date:   Fri Nov 12 11:43:11 2021 +0100

Support 0x019b via tipa (#12426)
---
 lib/unicodesymbols |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/unicodesymbols b/lib/unicodesymbols
index 0e3c3a4..043f4dc 100644
--- a/lib/unicodesymbols
+++ b/lib/unicodesymbols
@@ -315,7 +315,7 @@
 #0x0198 "" "" "" # LATIN CAPITAL LETTER K WITH HOOK
 #0x0199 "" "" "" # LATIN SMALL LETTER K WITH HOOK
 #0x019a "" "" "" # LATIN SMALL LETTER L WITH BAR
-#0x019b "" "" "" # LATIN SMALL LETTER LAMBDA WITH 
STROKE
+0x019b "\\textcrlambda""tipa" "force" # LATIN SMALL LETTER LAMBDA 
WITH STROKE
 #0x019c "" "" "" # LATIN CAPITAL LETTER TURNED M
 #0x019d "" "" "" # LATIN CAPITAL LETTER N WITH LEFT 
HOOK
 #0x019e "" "" "" # LATIN SMALL LETTER N WITH LONG 
RIGHT LEG
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs