Commit ad9b5f755c245c1b75df01ed2f4c5d7c64f8efff
1 parent
f2cbbbae
ftguess: fixed typo Pointpoint => Powerpoint
Showing
1 changed file
with
8 additions
and
8 deletions
oletools/ftguess.py
| ... | ... | @@ -633,26 +633,26 @@ class FType_Powerpoint2007(FType_Powerpoint, FType_Generic_OpenXML): |
| 633 | 633 | |
| 634 | 634 | class FType_Powerpoint2007_Presentation(FType_Powerpoint2007): |
| 635 | 635 | filetype = FTYPE.POWERPOINT2007_PPTX |
| 636 | - name = 'MSPointpoint 2007+ Presentation' | |
| 637 | - longname = 'MSPointpoint 2007+ Presentation (.pptx)' | |
| 636 | + name = 'MSPowerpoint 2007+ Presentation' | |
| 637 | + longname = 'MSPowerpoint 2007+ Presentation (.pptx)' | |
| 638 | 638 | extensions = ['pptx'] |
| 639 | 639 | |
| 640 | 640 | class FType_Powerpoint2007_Slideshow(FType_Powerpoint2007): |
| 641 | 641 | filetype = FTYPE.POWERPOINT2007_PPSX |
| 642 | - name = 'MSPointpoint 2007+ Slideshow' | |
| 643 | - longname = 'MSPointpoint 2007+ Slideshow (.ppsx)' | |
| 642 | + name = 'MSPowerpoint 2007+ Slideshow' | |
| 643 | + longname = 'MSPowerpoint 2007+ Slideshow (.ppsx)' | |
| 644 | 644 | extensions = ['ppsx'] |
| 645 | 645 | |
| 646 | 646 | class FType_Powerpoint2007_Macro(FType_Powerpoint2007): |
| 647 | 647 | filetype = FTYPE.POWERPOINT2007_PPTM |
| 648 | - name = 'MSPointpoint 2007+ Macro-Enabled Presentation' | |
| 649 | - longname = 'MSPointpoint 2007+ Macro-Enabled Presentation (.pptm)' | |
| 648 | + name = 'MSPowerpoint 2007+ Macro-Enabled Presentation' | |
| 649 | + longname = 'MSPowerpoint 2007+ Macro-Enabled Presentation (.pptm)' | |
| 650 | 650 | extensions = ['pptm'] |
| 651 | 651 | |
| 652 | 652 | class FType_Powerpoint2007_Slideshow_Macro(FType_Powerpoint2007): |
| 653 | 653 | filetype = FTYPE.POWERPOINT2007_PPSM |
| 654 | - name = 'MSPointpoint 2007+ Macro-Enabled Slideshow' | |
| 655 | - longname = 'MSPointpoint 2007+ Macro-Enabled Slideshow (.ppsm)' | |
| 654 | + name = 'MSPowerpoint 2007+ Macro-Enabled Slideshow' | |
| 655 | + longname = 'MSPowerpoint 2007+ Macro-Enabled Slideshow (.ppsm)' | |
| 656 | 656 | extensions = ['ppsm'] |
| 657 | 657 | |
| 658 | 658 | ... | ... |