mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
remove xforms relicts
* src/frontends/qt3/QPrefs.C: * src/frontends/controllers/BCView.tmpl: * src/support/package.h: fix/remove comment * po/pocheck.pl: no longer check for xforms shortcuts * development/Win32/lyx.vcproj: ignore ControlPreamble.[Ch] git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14372 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f8404ec837
commit
4eccc22119
@ -1877,18 +1877,6 @@
|
||||
<File
|
||||
RelativePath="..\..\src\frontends\controllers\ControlParagraph.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\frontends\controllers\ControlPreamble.C">
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
CompileAs="2"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\frontends\controllers\ControlPreamble.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\frontends\controllers\ControlPrefs.C">
|
||||
<FileConfiguration
|
||||
|
@ -81,18 +81,9 @@ foreach $pofilename ( @ARGV )
|
||||
$warn++;
|
||||
}
|
||||
|
||||
# Check for "|..." shortcut(s)
|
||||
if ( ( $msgid =~ m/\|[^ ]/ ) != ( $msgstr =~ m/\|[^ ]/ ) ) {
|
||||
print( "Missing or unexpected xforms shortcut:\n" );
|
||||
print( " '$msgid' => '$msgstr'\n" );
|
||||
$warn++;
|
||||
}
|
||||
|
||||
$msgid_clean = lc($msgid);
|
||||
$msgstr_clean = lc($msgstr);
|
||||
|
||||
$msgid_clean =~ s/(.*)\|.*?$/$1/; # strip xforms shortcuts
|
||||
$msgstr_clean =~ s/(.*)\|.*?$/$1/;
|
||||
$msgid_clean =~ s/&([^ ])/$1/; # strip Qt shortcuts
|
||||
$msgstr_clean =~ s/&([^ ])/$1/;
|
||||
|
||||
|
@ -12,7 +12,6 @@
|
||||
*
|
||||
* GuiBC is a base class and so these templatised methods will be
|
||||
* instantiated if this file is #included in the derived classes' .C file.
|
||||
* see, e.g., xforms/xformsBC.C
|
||||
*/
|
||||
|
||||
#include "BCView.h"
|
||||
|
@ -362,7 +362,7 @@ void QPrefs::apply()
|
||||
LColor::color const col(dialog_->colors_[i]);
|
||||
QColor const & qcol(lcolorcache.get(col));
|
||||
|
||||
// FIXME: dubious, but it's what xforms does
|
||||
// FIXME: dubious, but it's what xforms did
|
||||
if (qcol != ci->color()) {
|
||||
ostringstream ostr;
|
||||
|
||||
|
@ -113,7 +113,6 @@ public:
|
||||
|
||||
/** Used when setting the user_support directory.
|
||||
* Used also when expanding "~/" or contracting to "~/". (filetools.C)
|
||||
* Used by the XForms file dialog.
|
||||
* Used in emergencyWrite (bufferlist.C) as one possible location
|
||||
* for the dump.
|
||||
* This may be empty (e. g. when run under a CGI environment)
|
||||
|
Loading…
Reference in New Issue
Block a user